-
Notifications
You must be signed in to change notification settings - Fork 409
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Script for downloading release binaries from github #41
Closed
Closed
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,287 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -e | ||
set -o pipefail | ||
|
||
default_source=github | ||
default_solidity_version=latest | ||
|
||
if [[ $1 == --help ]]; then | ||
echo "Downloads release binaries, puts them at the right locations in a local" | ||
echo "checkout of the solc-bin repository and updates the file lists." | ||
echo | ||
echo "WARNING: The binaries will be overwritten if they already exist." | ||
echo | ||
echo | ||
echo "Usage:" | ||
echo " ./$(basename "$0") --help" | ||
echo " ./$(basename "$0") [source] [solidity_version] [solc_bin_dir]" | ||
echo | ||
echo " source The source to get binaries from. Must be 'github'." | ||
echo " Other sources may be added in the future." | ||
echo " Default: '${default_source}'." | ||
echo " solidity_version Version tag representing the release to download, including" | ||
echo " the leading 'v'. Use 'latest' to get the most recent release." | ||
echo " Default: '${default_solidity_version}'." | ||
echo " solc_bin_dir Location of the solc-bin checkout." | ||
echo " Default: current working directory." | ||
echo | ||
echo | ||
echo "Examples:" | ||
echo " ./$(basename "$0") --help" | ||
echo " ./$(basename "$0") github latest" | ||
echo " ./$(basename "$0") github v0.6.9" | ||
echo " ./$(basename "$0") github latest ~/solc-bin/" | ||
exit 0 | ||
fi | ||
|
||
|
||
# GENERAL UTILITIES | ||
|
||
query_api() { | ||
local api_endpoint="$1" | ||
|
||
curl --fail --silent --show-error "$api_endpoint" | ||
} | ||
|
||
die() { | ||
local format="$1" | ||
|
||
>&2 printf "ERROR: $format\n" "${@:2}" | ||
exit 1 | ||
} | ||
|
||
is_wasm() { | ||
# Just a heuristic but it does match the expected release versions in solc-bin so far. | ||
grep --fixed-strings --silent 'var wasmBinaryFile="data:application/octet-stream;base64,AGFzbQEA' "$@" && return 0 | ||
return 1 | ||
} | ||
|
||
expect_single_line() { | ||
local text="$1" | ||
|
||
local line_count; line_count="$(echo "$text" | grep --count "")" | ||
[[ $text != "" ]] || die "Expected one line, got zero." | ||
(( $line_count < 2 )) || die "Expected one line, got %d:\n%s" "$line_count" "$text" | ||
} | ||
|
||
|
||
# TAG INFO FROM GITHUB API | ||
|
||
filter_only_version_tags() { | ||
jq '.[] | select (.name | startswith("v"))' | ||
} | ||
|
||
filter_tags_by_name() { | ||
local tag_name="$1" | ||
|
||
jq '[ . | select (.name == "'"$tag_name"'") ]' | ||
} | ||
|
||
|
||
# RELEASE INFO FROM GITHUB API | ||
|
||
filter_assets_by_name() { | ||
local name_regex="$1" | ||
|
||
jq '[ .assets[] | select(.name | test("'"${name_regex}"'")) ]' | ||
} | ||
|
||
|
||
# REPOSITORY STRUCTURE | ||
|
||
target_to_github_artifact_regex() { | ||
local target="$1" | ||
|
||
case "$target" in | ||
linux-amd64) echo '^(solc-static-linux|solc)$' ;; | ||
macosx-amd64) echo '^solc-macos$' ;; | ||
windows-amd64) echo '^solidity-windows(-[0-9.]+)?\\.zip$' ;; | ||
emscripten) echo '^soljson(-v[0-9.]+.*)?\\.js$' ;; | ||
*) die "Invalid target: %s" "$target" ;; | ||
esac | ||
} | ||
|
||
is_executable() { | ||
local target="$1" | ||
|
||
case "$target" in | ||
linux-amd64) return 0 ;; | ||
macosx-amd64) return 0 ;; | ||
windows-amd64) return 1 ;; | ||
emscripten) return 1 ;; | ||
*) die "Invalid target: %s" "$target" ;; | ||
esac | ||
} | ||
|
||
format_binary_path() { | ||
local target="$1" | ||
local solidity_version="$2" | ||
local commit_hash="$3" | ||
|
||
short_hash="$(echo "$commit_hash" | head --bytes 8)" | ||
full_version="${solidity_version}+commit.${short_hash}" | ||
|
||
case "$target" in | ||
linux-amd64) echo "${target}/solc-${target}-${full_version}" ;; | ||
macosx-amd64) echo "${target}/solc-${target}-${full_version}" ;; | ||
windows-amd64) echo "${target}/solc-${target}-${full_version}.zip" ;; | ||
emscripten-wasm32) echo "${target}/solc-${target}-${full_version}.js" ;; | ||
emscripten-asmjs) echo "${target}/solc-${target}-${full_version}.js" ;; | ||
wasm) echo "wasm/soljson-${full_version}.js" ;; | ||
bin) echo "bin/soljson-${full_version}.js" ;; | ||
emscripten) echo "bin/soljson-${full_version}.js" ;; | ||
*) die "Invalid target: %s" "$target" ;; | ||
esac | ||
} | ||
|
||
|
||
# MAIN LOGIC | ||
|
||
query_github_tag_info() { | ||
local endpoint="https://api.github.com/repos/ethereum/solidity/tags?per_page=100" | ||
|
||
local page=1 | ||
local tag_info_list="$(query_api "${endpoint}&page=${page}")" | ||
while [[ $(echo "$tag_info_list" | jq '. | length') > 0 ]]; do | ||
echo "$tag_info_list" | ||
|
||
((++page)) | ||
local tag_info_list="$(query_api "${endpoint}&page=${page}")" | ||
done | ||
} | ||
|
||
download_binary() { | ||
local target_path="$1" | ||
local download_url="$2" | ||
|
||
# If the target exists we ovewrite it. As a special case, if it's a symlink, remove it | ||
# so that we only change link not the file it links to. | ||
[[ ! -L "$target_path" ]] || rm "$target_path" | ||
|
||
echo "Downloading release binary from ${download_url} into ${target_path}" | ||
curl "$download_url" --output "${target_path}" --location --no-progress-meter --create-dirs | ||
} | ||
|
||
download_binary_from_github() { | ||
local target="$1" | ||
local release_info="$2" | ||
local tag_info="$3" | ||
local solc_bin_dir="$4" | ||
|
||
local solidity_version; solidity_version="$(echo "$release_info" | jq --raw-output '.tag_name')" | ||
|
||
local commit_hash; commit_hash="$( | ||
echo "$tag_info" | | ||
filter_tags_by_name "$solidity_version" | | ||
jq --raw-output '.[].commit.sha' | ||
)" | ||
expect_single_line "$commit_hash" | ||
|
||
local asset_info; asset_info="$(echo "$release_info" | filter_assets_by_name "$(target_to_github_artifact_regex "$target")")" | ||
local artifact_url; artifact_url="$(echo "$asset_info" | jq --raw-output '.[].browser_download_url')" | ||
local asset_count; asset_count=$(echo "$artifact_url" | grep --count "") | ||
|
||
if [[ $artifact_url == "" ]]; then | ||
>&2 echo "WARNING: No artifact matching target '${target}' available in release ${solidity_version}." | ||
elif (( $asset_count >= 2 )); then | ||
local joined_asset_names; joined_asset_names="$(echo "$asset_info" | jq --raw-output '[ .[].name ] | join(", ")')" | ||
die "Expected at most one matching asset. Found %d: %s" "$asset_count" "$joined_asset_names" | ||
else | ||
local binary_path; binary_path="$(format_binary_path "$target" "$solidity_version" "$commit_hash")" | ||
download_binary "${solc_bin_dir}/${binary_path}" "$artifact_url" | ||
! is_executable "$target" || chmod +x "${solc_bin_dir}/${binary_path}" | ||
|
||
if [[ $target == emscripten ]]; then | ||
disambiguate_emscripten_binary "$binary_path" "$solidity_version" "$commit_hash" "$solc_bin_dir" | ||
fi | ||
fi | ||
} | ||
|
||
disambiguate_emscripten_binary() { | ||
local binary_path="$1" | ||
local solidity_version="$2" | ||
local commit_hash="$3" | ||
local solc_bin_dir="$4" | ||
|
||
if is_wasm "${solc_bin_dir}/${binary_path}"; then | ||
local dest_path; dest_path="$(format_binary_path wasm "$solidity_version" "$commit_hash")" | ||
local emscripten_target=emscripten-wasm32 | ||
|
||
echo "Smells like fresh wasm. Moving ${binary_path} to wasm/" | ||
mkdir -p "$(dirname "${solc_bin_dir}/${dest_path}")" | ||
mv "${solc_bin_dir}/${binary_path}" "${solc_bin_dir}/${dest_path}" | ||
ln --symbolic "../${dest_path}" "${solc_bin_dir}/${binary_path}" | ||
else | ||
local dest_path="$binary_path" | ||
local emscripten_target=emscripten-asmjs | ||
fi | ||
|
||
local emscripten_binary_path; emscripten_binary_path="$(format_binary_path "$emscripten_target" "$solidity_version" "$commit_hash")" | ||
echo "Creating or updating link: ${emscripten_binary_path} -> ${dest_path}" | ||
mkdir -p "$(dirname "${solc_bin_dir}/$emscripten_binary_path")" | ||
[[ ! -L "${solc_bin_dir}/$emscripten_binary_path" ]] || rm "${solc_bin_dir}/$emscripten_binary_path" | ||
ln --symbolic "../${dest_path}" "${solc_bin_dir}/${emscripten_binary_path}" | ||
} | ||
|
||
download_release() { | ||
local source="$1" | ||
local solidity_version="$2" | ||
local solc_bin_dir="$3" | ||
|
||
echo "===> DOWNLOADING RELEASE ${solidity_version} FROM ${source}" | ||
echo "solc-bin directory: ${solc_bin_dir}" | ||
|
||
echo "Getting tag info from github" | ||
local tag_info; tag_info="$(query_github_tag_info | filter_only_version_tags)" | ||
|
||
case "$source" in | ||
github) | ||
local release_targets=( | ||
linux-amd64 | ||
windows-amd64 | ||
macosx-amd64 | ||
emscripten | ||
) | ||
|
||
if [[ $solidity_version == latest ]]; then | ||
local release_info_endpoint="https://api.github.com/repos/ethereum/solidity/releases/latest" | ||
else | ||
local release_info_endpoint="https://api.github.com/repos/ethereum/solidity/releases/tags/${solidity_version}" | ||
fi | ||
|
||
echo "Getting ${solidity_version} release info from ${release_info_endpoint}" | ||
local release_info; release_info="$(query_api "$release_info_endpoint")" | ||
|
||
echo "$release_info" | jq '{ | ||
name, | ||
author: .author.login, | ||
tag_name, | ||
target_commitish, | ||
draft, | ||
prerelease, | ||
created_at, | ||
published_at, | ||
assets: [ .assets[].name ] | ||
}' | ||
|
||
for target in ${release_targets[@]}; do | ||
download_binary_from_github "$target" "$release_info" "$tag_info" "$solc_bin_dir" | ||
done | ||
;; | ||
|
||
*) die "Invalid source: '${source}'. The only currently supported value is 'github'." ;; | ||
esac | ||
} | ||
|
||
main() { | ||
local source="${1:-"$default_source"}" | ||
local solidity_version="${2:-"$default_solidity_version"}" | ||
local solc_bin_dir="${3:-$PWD}" | ||
|
||
(( $# < 4 )) || die "Too many arguments" | ||
|
||
download_release "$source" "$solidity_version" "$solc_bin_dir" | ||
} | ||
|
||
main "$@" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Random comment: do you want to enable
shellcheck
on this repo prior to this commit?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I just ran into this comment randomly, sorry for not replying earlier.
This is actually a good reason to move scripts I originally put into this repo to the main one. I'm planning to do that eventually. I already did that with bytecode PR check.
Not sure about this particular script though. I'd like to salvage it if possible but currently I'm not sure if we actually have a use for it. We should probably talk about it on one of the planning meetings but this currently isn't too high on the priority list for me.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure it makes sense moving the
s3-sync.sh
to another repo, so perhaps better to have shellcheck here in any case.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Well, I think that even
s3-sync.sh
would fit right in with other scripts that are already in https://github.com/ethereum/solidity/tree/develop/scripts/solc-bin. I even think it might make sense to moveupdate
there.solc-bin
with it's current size is not very convenient to use for coding and after doing that for some time I'm more and more convinced that it should contain only binaries and nothing else.One downside of having code in this repo is that accessing it requires getting a checkout, which is big and wastes a lot of time. This is sometimes an obstacle when you want to have multliple jobs in a single workflow and not all of them need to access binaries. It's not that hard to work around - you can pass the scripts as artifacts or download individual files via github API - but it's still a bit annoying when you need to do this.
To be honest I'm not strongly convinced that we must have everything in the main repo - I see both upsides and downsides - I'm just currently leaning more towards that option. Having shellcheck here would not be bad either.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Also, it would be nice to have some of these scripts rewritten in Python eventually and for that we already have nice linting and testing infrastructure in main repo. For example the bytecode comparison check for PRs is written in Bash and this is the main reason why I gave up on running it on Windows binaries (they're being ignored currently). Originally I wanted to support them but I realized that I'd have to write a separate PowerShell or CMD version of the scripts just for that one platform.