Transfer files between jobs using artifacts
All jobs in subsequent stages will receive the artifacts (by default)
Include and exclude paths
Expire artifacts
Name artifacts
Add untracked files
When to create artifacts (jobs success, failure, always)
Test binary in a new job and stage
hello
binarytest
test
(See new .gitlab-ci.yml
)
Jobs can receive artifacts from only some previous jobs
Empty list disables receiving artifacts:
job_name:
# ...
dependencies: []
# ...