Skip to content
Snippets Groups Projects
Commit d2d78721 authored by Walter Lozano's avatar Walter Lozano
Browse files

Specify job dependency to avoid unneeded artifacts


By default Gitlab will use the artifacts of all the previous stages,
causing the archive created at the pack stage to include unneeded
files. This creates confusion and increases the size of the tarball.

To overcome this issue, specify which are the artifacts we are interested.

Signed-off-by: default avatarWalter Lozano <walter.lozano@collabora.com>
parent 6493087a
No related branches found
No related tags found
1 merge request!33Backport v2023 <- v2024dev3: Specify job dependency to avoid unneeded artifacts
Pipeline #689464 passed
......@@ -159,10 +159,20 @@ build-armhf-libc:
pack-arm64:
extends: .pack
variables: *arm64-variables
dependencies:
- build-arm64-gcc
- build-arm64-binutils
- build-arm64-gdb
- build-arm64-libc
pack-armhf:
extends: .pack
variables: *armhf-variables
dependencies:
- build-armhf-gcc
- build-armhf-binutils
- build-armhf-gdb
- build-armhf-libc
test-arm64:
extends: .test
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment