Skip to content

Commit b8605f2

Browse files
committed
Publish releases to S3 and GCS (#633)
1 parent 5f53e53 commit b8605f2

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

ci/publish-installer.sh

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,11 @@ cat install/agave-install-init.sh >>release.jito.wtf-install
3535

3636
echo --- GCS: "install"
3737
upload-gcs-artifact "/solana/release.jito.wtf-install" "gs://jito-release/$CHANNEL_OR_TAG/install"
38+
39+
# Jito added - releases need to support S3
40+
echo --- AWS S3 Store: "install"
41+
upload-s3-artifact "/solana/release.jito.wtf-install" "s3://release.jito.wtf/$CHANNEL_OR_TAG/install"
42+
3843
echo Published to:
3944
ci/format-url.sh https://release.jito.wtf/"$CHANNEL_OR_TAG"/install
4045

ci/publish-tarball.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,10 @@ for file in "${TARBALL_BASENAME}"-$TARGET.tar.bz2 "${TARBALL_BASENAME}"-$TARGET.
121121
echo --- GCS Store: "$file"
122122
upload-gcs-artifact "/solana/$file" gs://jito-release/"$CHANNEL_OR_TAG"/"$file"
123123

124+
# Jito added - releases need to support S3
125+
echo --- AWS S3 Store: "$file"
126+
upload-s3-artifact "/solana/$file" s3://release.jito.wtf/"$CHANNEL_OR_TAG"/"$file"
127+
124128
echo Published to:
125129
$DRYRUN ci/format-url.sh https://release.jito.wtf/"$CHANNEL_OR_TAG"/"$file"
126130

core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ codecov = { repository = "solana-labs/solana", branch = "master", service = "git
1515

1616
[dependencies]
1717
ahash = { workspace = true }
18-
anyhow = { workspace = true }
1918
anchor-lang = { workspace = true }
19+
anyhow = { workspace = true }
2020
arrayvec = { workspace = true }
2121
base64 = { workspace = true }
2222
bincode = { workspace = true }

0 commit comments

Comments
 (0)