Skip to content

Commit

Permalink
Publish releases to S3 and GCS (#633) (#634)
Browse files Browse the repository at this point in the history
  • Loading branch information
buffalu committed Aug 27, 2024
1 parent 406cd74 commit f658e49
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
5 changes: 5 additions & 0 deletions ci/publish-installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,11 @@ cat install/agave-install-init.sh >>release.jito.wtf-install

echo --- GCS: "install"
upload-gcs-artifact "/solana/release.jito.wtf-install" "gs://jito-release/$CHANNEL_OR_TAG/install"

# Jito added - releases need to support S3
echo --- AWS S3 Store: "install"
upload-s3-artifact "/solana/release.jito.wtf-install" "s3://release.jito.wtf/$CHANNEL_OR_TAG/install"

echo Published to:
ci/format-url.sh https://release.jito.wtf/"$CHANNEL_OR_TAG"/install

4 changes: 4 additions & 0 deletions ci/publish-tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,10 @@ for file in "${TARBALL_BASENAME}"-$TARGET.tar.bz2 "${TARBALL_BASENAME}"-$TARGET.
echo --- GCS Store: "$file"
upload-gcs-artifact "/solana/$file" gs://jito-release/"$CHANNEL_OR_TAG"/"$file"

# Jito added - releases need to support S3
echo --- AWS S3 Store: "$file"
upload-s3-artifact "/solana/$file" s3://release.jito.wtf/"$CHANNEL_OR_TAG"/"$file"

echo Published to:
$DRYRUN ci/format-url.sh https://release.jito.wtf/"$CHANNEL_OR_TAG"/"$file"

Expand Down

0 comments on commit f658e49

Please sign in to comment.