Skip to content

luminartech/artifacts-buildkite-plugin

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Artifacts Buildkite Plugin Build status

A Buildkite plugin for uploading and downloading artifacts.

Uploading 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.log

or

steps:
  - command: ...
    plugins:
    - artifacts#v1.5.0:
        upload: 
        - from: log1.log
          to: log2.log

User-defined ACL on uploaded files

When 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-read

eg: uploading a private file when using GS

steps:
  - command: ...
    plugins:
    - artifacts#v1.5.0:
        upload: "coverage-report/**/*"
        gs-upload-acl: private

Downloading artifacts

This 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.log

or

steps:
  - command: ...
    plugins:
      - artifacts#v1.5.0:
          download: 
          - from: log1.log
            to: log2.log

Configuration

upload (string, array of strings, {from,to}, array of {from,to})

A glob pattern, or array of glob patterns, for files to upload.

download (string, array of strings, {from,to}, array of {from,to})

A glob pattern, or array of glob patterns, for files to download.

step (optional, string)

The job UUID or name to download the artifact from.

build (optional, string)

The build UUID to download the artifact from.

Relocation

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.

Developing

To run testing, shellchecks and plugin linting use use bk run with the Buildkite CLI.

bk run

Or if you want to run just the tests, you can use the Docker Compose CLI:

docker-compose run --rm tests

License

MIT (see LICENSE)

About

๐Ÿ†™ Automatically upload and download artifacts

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Shell 100.0%