-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: auto bumping e2e test deps (#583)
* 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 * CI: bumping e2e test deps
- Loading branch information
Showing
3 changed files
with
79 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
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,12 @@ | ||
#!/bin/bash | ||
set -e | ||
|
||
# get current develop branch sha | ||
SHA=$(curl https://api.github.com/repos/smartcontractkit/chainlink/commits/develop | jq -r '.sha') | ||
echo "Chainlink Develop Commit: $SHA" | ||
|
||
# update dependencies | ||
go get github.com/smartcontractkit/chainlink/integration-tests@$SHA | ||
go mod tidy | ||
go get github.com/smartcontractkit/chainlink/v2@$SHA | ||
go mod tidy |