-
Notifications
You must be signed in to change notification settings - Fork 475
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add CI job to check if updateBinary downloads the correct release
Co-authored-by: Kamil Śliwak <[email protected]>
- Loading branch information
Showing
2 changed files
with
73 additions
and
0 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
BASE_URL="https://binaries.soliditylang.org/bin" | ||
REPO_ROOT="$(dirname "$0")/.." | ||
LIST_FILE=$(mktemp -t solc-bin-list-XXXXXX.json) | ||
|
||
function fail() { | ||
echo -e "ERROR: $*" >&2 | ||
exit 1 | ||
} | ||
|
||
function check_release_version() { | ||
local current_version="$1" | ||
|
||
curl --silent --fail "${BASE_URL}/list.json" -o "$LIST_FILE" | ||
[[ ! -f $LIST_FILE ]] && fail "Download of release list failed:\n [url]: ${BASE_URL}/list.json" | ||
|
||
# Retrieve the latest released version | ||
latest_version_short=$(jq --raw-output ".latestRelease" "$LIST_FILE") | ||
latest_version_long=$(jq --raw-output ".releases | .[\"${latest_version_short}\"]" "$LIST_FILE" | sed --regexp-extended --quiet 's/^soljson-v(.*).js$/\1/p') | ||
|
||
# Check if current version is the latest release | ||
if [[ "$current_version" != "$latest_version_long" ]]; then | ||
fail "Version is not the latest release:\n [current]: ${current_version}\n [latest]: ${latest_version_short}" | ||
fi | ||
|
||
current_sha=$(shasum --binary --algorithm 256 ./soljson.js | awk '{ print $1 }') | ||
release_sha=$(jq --raw-output ".builds[] | select(.longVersion == \"${latest_version_long}\") | .sha256" "$LIST_FILE" | sed 's/^0x//') | ||
|
||
# Check if sha matches | ||
if [[ "$current_sha" != "$release_sha" ]]; then | ||
fail "Checksum mismatch.\n [current]: ${current_sha}\n [release]: ${release_sha}" | ||
fi | ||
} | ||
|
||
( | ||
cd "$REPO_ROOT" | ||
|
||
current_version=$(node ./dist/solc.js --version | sed --regexp-extended --quiet 's/^(.*).Emscripten.*/\1/p') | ||
|
||
# Verify if current version matches the package version. | ||
# It already exits with an error if the version mismatch | ||
node ./dist/verifyVersion.js | ||
|
||
# Verify if current version is the latest release | ||
if check_release_version "$current_version"; then | ||
echo "The currently installed soljson.js binary (${current_version}) matches the latest release available in solc-bin." | ||
fi | ||
|
||
# Cleanup temp files | ||
rm -f "$LIST_FILE" | ||
) |