diff --git a/ci/buildkite-secondary.yml b/ci/buildkite-secondary.yml index dd1d69d106..30feaf8865 100644 --- a/ci/buildkite-secondary.yml +++ b/ci/buildkite-secondary.yml @@ -2,30 +2,35 @@ # 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" + - name: "publish tarball (x86_64-unknown-linux-gnu)" + command: "ci/publish-tarball.sh" agents: - "queue=release-build" timeout_in_minutes: 60 - name: "publish tarball" + - name: "publish installer" + command: "ci/publish-installer.sh" + agents: + - "queue=release-build" + timeout_in_minutes: 5 - wait - - command: "sdk/docker-solana/build.sh" + - name: "publish docker" + command: "sdk/docker-solana/build.sh" agents: - "queue=release-build" timeout_in_minutes: 60 - name: "publish docker" - - command: "ci/publish-crate.sh" + - name: "publish crate" + command: "ci/publish-crate.sh" agents: - "queue=release-build" timeout_in_minutes: 240 - name: "publish crate" branches: "!master" - - command: "ci/publish-tarball.sh" + - name: "publish tarball (aarch64-apple-darwin)" + command: "ci/publish-tarball.sh" agents: - "queue=release-build-aarch64-apple-darwin" timeout_in_minutes: 60 - name: "publish tarball (aarch64-apple-darwin)" - - command: "ci/publish-tarball.sh" + - name: "publish tarball (x86_64-apple-darwin)" + command: "ci/publish-tarball.sh" agents: - "queue=release-build-x86_64-apple-darwin" timeout_in_minutes: 60 - name: "publish tarball (x86_64-apple-darwin)" diff --git a/ci/publish-installer.sh b/ci/publish-installer.sh new file mode 100644 index 0000000000..4b5345ae0d --- /dev/null +++ b/ci/publish-installer.sh @@ -0,0 +1,39 @@ +#!/usr/bin/env bash +set -e + +cd "$(dirname "$0")/.." + +# check does it need to publish +if [[ -n $DO_NOT_PUBLISH_TAR ]]; then + echo "Skipping publishing install wrapper" + exit 0 +fi + +# check channel and tag +eval "$(ci/channel-info.sh)" + +if [[ -n "$CI_TAG" ]]; then + CHANNEL_OR_TAG=$CI_TAG +else + CHANNEL_OR_TAG=$CHANNEL +fi + +if [[ -z $CHANNEL_OR_TAG ]]; then + echo +++ Unable to determine channel or tag to publish into, exiting. + exit 0 +fi + +# upload install script +source ci/upload-ci-artifact.sh + +cat >release.solana.com-install <>release.solana.com-install + +echo --- AWS S3 Store: "install" +upload-s3-artifact "/solana/release.solana.com-install" "s3://release.solana.com/$CHANNEL_OR_TAG/install" +echo Published to: +ci/format-url.sh https://release.solana.com/"$CHANNEL_OR_TAG"/install diff --git a/ci/publish-tarball.sh b/ci/publish-tarball.sh index 0758e9bf5f..ef078f6636 100755 --- a/ci/publish-tarball.sh +++ b/ci/publish-tarball.sh @@ -150,23 +150,4 @@ for file in "${TARBALL_BASENAME}"-$TARGET.tar.bz2 "${TARBALL_BASENAME}"-$TARGET. fi done - -# Create install wrapper for release.solana.com -if [[ -n $DO_NOT_PUBLISH_TAR ]]; then - echo "Skipping publishing install wrapper" -elif [[ -n $BUILDKITE ]]; then - cat > release.solana.com-install <> release.solana.com-install - - echo --- AWS S3 Store: "install" - $DRYRUN upload-s3-artifact "/solana/release.solana.com-install" "s3://release.solana.com/$CHANNEL_OR_TAG/install" - echo Published to: - $DRYRUN ci/format-url.sh https://release.solana.com/"$CHANNEL_OR_TAG"/install -fi - echo --- ok