-
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: add ci/cd * chore: adding execute permissions * chore: missing deps * permissions * add msrv * fix: push missing node_modules folder * chore: do not run anvil * chore: ignore it tests
- Loading branch information
Showing
20 changed files
with
7,920 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
msrv = "1.65" |
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,89 @@ | ||
#!/usr/bin/env bash | ||
# Installs Solc and Geth binaries | ||
# Note: intended for use only with CI (x86_64 Ubuntu, MacOS or Windows) | ||
set -e | ||
|
||
GETH_BUILD=${GETH_BUILD:-"1.11.2-73b01f40"} | ||
|
||
BIN_DIR=${BIN_DIR:-"$HOME/bin"} | ||
|
||
PLATFORM="$(uname -s | awk '{print tolower($0)}')" | ||
if [ "$PLATFORM" != "linux" ] && [ "$PLATFORM" != "darwin" ]; then | ||
EXT=".exe" | ||
fi | ||
|
||
main() { | ||
mkdir -p "$BIN_DIR" | ||
cd "$BIN_DIR" | ||
export PATH="$BIN_DIR:$PATH" | ||
if [ "$GITHUB_PATH" ]; then | ||
echo "$BIN_DIR" >> "$GITHUB_PATH" | ||
fi | ||
|
||
install_geth & | ||
g=$! | ||
install_solc & | ||
wait $g $! | ||
|
||
echo "" | ||
echo "Installed Geth:" | ||
geth version | ||
echo "" | ||
echo "Installed Solc:" | ||
solc --version | ||
} | ||
|
||
# Installs geth from https://geth.ethereum.org/downloads | ||
install_geth() { | ||
case "$PLATFORM" in | ||
linux|darwin) | ||
name="geth-$PLATFORM-amd64-$GETH_BUILD" | ||
curl -s "https://gethstore.blob.core.windows.net/builds/$name.tar.gz" | tar -xzf - | ||
mv -f "$name/geth" ./ | ||
rm -rf "$name" | ||
chmod +x geth | ||
;; | ||
*) | ||
name="geth-windows-amd64-$GETH_BUILD" | ||
zip="$name.zip" | ||
curl -so "$zip" "https://gethstore.blob.core.windows.net/builds/$zip" | ||
unzip "$zip" | ||
mv -f "$name/geth.exe" ./ | ||
rm -rf "$name" "$zip" | ||
;; | ||
esac | ||
} | ||
|
||
# Installs solc from https://binaries.soliditylang.org (https://github.com/ethereum/solc-bin) | ||
install_solc() { | ||
bins_url="https://binaries.soliditylang.org" | ||
case "$PLATFORM" in | ||
linux) bins_url+="/linux-amd64";; | ||
darwin) bins_url+="/macosx-amd64";; | ||
*) bins_url+="/windows-amd64";; | ||
esac | ||
|
||
list=$(curl -s "$bins_url/list.json") | ||
# use latest version | ||
if [ -z "$SOLC_VERSION" ]; then | ||
SOLC_VERSION="$(echo "$list" | jq -r ".latestRelease")" | ||
fi | ||
bin=$(echo "$list" | jq -r ".releases[\"$SOLC_VERSION\"]") | ||
|
||
if [ "$bin" = "null" ]; then | ||
echo "Invalid Solc version: $SOLC_VERSION" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
# windows versions <= 0.7.1 use .zip | ||
if [[ "$bin" = *.zip ]]; then | ||
echo "Cannot install solc <= 0.7.1" 1>&2 | ||
exit 1 | ||
fi | ||
|
||
curl -so "$bin" "$bins_url/$bin" | ||
mv -f "$bin" "solc$EXT" | ||
chmod +x "solc$EXT" | ||
} | ||
|
||
main |
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,91 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
name: test ${{ matrix.flags.name }} (${{ matrix.os }}) | ||
runs-on: ${{ matrix.os }} | ||
timeout-minutes: 30 | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu-latest", "macos-latest", "windows-latest"] | ||
flags: | ||
- name: no default features | ||
flags: --no-default-features | ||
- name: default features | ||
flags: "" | ||
- name: all features | ||
flags: --all-features | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- name: Install test binaries | ||
shell: bash | ||
run: ./.github/scripts/install_test_binaries.sh | ||
- name: Install nextest | ||
uses: taiki-e/install-action@nextest | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: test ${{ matrix.flags.flags }} | ||
shell: bash | ||
run: | | ||
cargo nextest run \ | ||
${{ matrix.flags.flags }} \ | ||
-E "!(kind(test))" \ | ||
--retries 2 | ||
feature-checks: | ||
name: feature checks | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 45 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@stable | ||
- uses: taiki-e/install-action@cargo-hack | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: cargo hack | ||
run: cargo hack check --feature-powerset --depth 1 --all-targets | ||
|
||
clippy: | ||
name: clippy | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@clippy | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: clippy | ||
run: cargo clippy --workspace --all-features --all-targets | ||
env: | ||
RUSTFLAGS: "-D warnings" | ||
|
||
docs: | ||
name: docs | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rust-docs | ||
- uses: Swatinem/rust-cache@v2 | ||
- name: doc | ||
run: cargo doc --workspace --all-features --no-deps --document-private-items | ||
env: | ||
RUSTDOCFLAGS: "--cfg docsrs -D warnings" | ||
|
||
fmt: | ||
name: fmt | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 30 | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: dtolnay/rust-toolchain@nightly | ||
with: | ||
components: rustfmt | ||
- name: fmt --check | ||
run: cargo fmt --all --check |
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 |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
/Cargo.lock | ||
|
||
cache/ | ||
artifacts/ | ||
|
||
.vscode | ||
/.envrc | ||
|
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
Oops, something went wrong.