-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: workflow for bumping solana e2e test image (#575)
* workflow for bumping solana image * update commit author + PR body * disable on push, enable cron * PR deduplication * trigger re-run * remove on push * add bumping to relayer test CI install
- Loading branch information
Showing
3 changed files
with
81 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: DependencyUpdater | ||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '0 0 * * *' # check every day at midnight UTC | ||
|
||
jobs: | ||
E2E-Solana-Image: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 # checkout branch that it is called from | ||
- name: Check for solana image updates | ||
id: solImage | ||
run: | | ||
make upgrade-e2e-solana-image | ||
image=$(curl https://api.github.com/repos/solana-labs/solana/releases/latest | jq -r '.tag_name') | ||
echo "image=$image" >> "$GITHUB_OUTPUT" | ||
- name: Check if PR exists | ||
id: check | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
run: | | ||
prs=$(gh pr list \ | ||
--repo "$GITHUB_REPOSITORY" \ | ||
--head "bump/solana-${{ steps.solImage.outputs.image }}" \ | ||
--json title \ | ||
--jq 'length') | ||
if ((prs > 0)); then | ||
echo "skip=true" >> "$GITHUB_OUTPUT" | ||
fi | ||
- name: Create pull request | ||
if: '!steps.check.outputs.skip' | ||
uses: peter-evans/create-pull-request@b1ddad2c994a25fbc81a28b3ec0e368bb2021c50 # v6.0.0 | ||
with: | ||
title: "[automated] bump solana image to ${{ steps.solImage.outputs.image }}" | ||
branch: bump/solana-${{ steps.solImage.outputs.image }} | ||
author: "github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>" | ||
reviewers: aalu1418 | ||
commit-message: "[automated] bump solana dependencies" | ||
body: "Latest Solana mainnet release is [\"${{ steps.solImage.outputs.image }}\"](https://github.com/solana-labs/solana/releases/latest)" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
cliVersion=$(grep -oh "release.solana.com/v[0-9]*.[0-9]*.[0-9]*" scripts/install-solana-ci.sh) | ||
echo "Current Test CLI Version: $cliVersion" | ||
|
||
cd integration-tests | ||
testVersion=$(grep -oh "solanalabs/solana:v[0-9]*.[0-9]*.[0-9]*" */**/*.go) | ||
echo "Current E2E Test Version: $testVersion" | ||
cd .. | ||
|
||
latestTag=$(curl https://api.github.com/repos/solana-labs/solana/releases/latest | jq -r '.tag_name') | ||
latestVersion="solanalabs/solana:$latestTag" | ||
latestCLI="release.solana.com/$latestTag" | ||
echo "Latest Solana Mainnet Version: $latestTag" | ||
|
||
if [ "$testVersion" = "$latestVersion" ] && [ "$cliVersion" = "$latestCLI" ] ; then | ||
echo "Solana Versions Are Up To Date" | ||
exit 0 | ||
fi | ||
|
||
echo "Replacing Solana Image Version" | ||
|
||
if [ "$(uname -s)" = "Darwin" ]; then | ||
sed -i '' -e "s~$cliVersion~$latestCLI~" scripts/install-solana-ci.sh | ||
cd integration-tests | ||
sed -i '' -e "s~$testVersion~$latestVersion~" */**/*.go | ||
else | ||
sed -i -e "s~$cliVersion~$latestCLI~" scripts/install-solana-ci.sh | ||
cd integration-tests | ||
sed -i -e "s~$testVersion~$latestVersion~" */**/*.go | ||
fi | ||
cd .. | ||
|
||
echo "Done" |