A Buildkite plugin for uploading and downloading artifacts.
This functionality duplicates the artifact_paths property in the pipeline yaml files; with the difference that it also allows downloading artifacts and that this plugin is executed before any command hook, so you can create dependencies on artifacts in your steps that are resolved before the actual step is executed. This is ideal for producing an artifact in one job and then downloading it in a different job before execution.
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload: "log/**/*.log"or
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload: [ "log/**/*.log", "debug/*.error" ]or
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload:
from: log1.log
to: log2.logor
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload:
- from: log1.log
to: log2.logWhen using AWS S3 or Google Cloud Storage as your artifact store, you can optionally define an object-level ACL for your uploaded artifacts. This allows you to have granular control over which artifacts are made public or private.
If not specified it will respect the relevant setting at the agent level.
eg: uploading a public file when using S3
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload: "coverage-report/**/*"
s3-upload-acl: public-readeg: uploading a private file when using GS
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
upload: "coverage-report/**/*"
gs-upload-acl: privateThis downloads artifacts matching globs to the local filesystem. See downloading artifacts for more details.
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
download: "log/**/*.log"or
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
download: [ "log/**/*.log", "debug/*.error" ]or
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
download:
from: log1.log
to: log2.logor
steps:
- command: ...
plugins:
- artifacts#v1.5.0:
download:
- from: log1.log
to: log2.logA glob pattern, or array of glob patterns, for files to upload.
A glob pattern, or array of glob patterns, for files to download.
The job UUID or name to download the artifact from.
The build UUID to download the artifact from.
If a file needs to be renamed or moved before upload or after download, a nested object is used with to and from keys.
At this time, this can only be used with single files and does not support glob patterns.
To run testing, shellchecks and plugin linting use use bk run with the Buildkite CLI.
bk runOr if you want to run just the tests, you can use the Docker Compose CLI:
docker-compose run --rm testsMIT (see LICENSE)