25 lines
762 B
YAML
25 lines
762 B
YAML
#
|
|
# Build steps that run after the primary pipeline on pushes and tags.
|
|
# Pull requests to not run these steps.
|
|
steps:
|
|
- command: "ci/publish-tarball.sh"
|
|
timeout_in_minutes: 60
|
|
name: "publish tarball"
|
|
- command: "ci/publish-docs.sh"
|
|
timeout_in_minutes: 15
|
|
name: "publish docs"
|
|
- command: "ci/publish-bpf-sdk.sh"
|
|
timeout_in_minutes: 5
|
|
name: "publish bpf sdk"
|
|
- wait
|
|
- command: "sdk/docker-solana/build.sh"
|
|
timeout_in_minutes: 60
|
|
name: "publish docker"
|
|
- command: "ci/publish-crate.sh"
|
|
timeout_in_minutes: 240
|
|
name: "publish crate"
|
|
branches: "!master"
|
|
# - command: ". ci/rust-version.sh; ci/docker-run.sh $$rust_stable_docker_image ci/test-move.sh"
|
|
# name: "move"
|
|
# timeout_in_minutes: 20
|