diff --git a/.github/scripts/install_test_binaries.sh b/.github/scripts/install_test_binaries.sh index 4e418f79..bd3662cb 100755 --- a/.github/scripts/install_test_binaries.sh +++ b/.github/scripts/install_test_binaries.sh @@ -14,7 +14,7 @@ echo "Installing Geth" PLATFORM="$(uname -s)" case "$PLATFORM" in Linux|Darwin) - platform="$(echo "$PLATFORM" | awk "{print tolower($0)}")" + platform="$(echo "$PLATFORM" | awk '{print tolower($0)}')" GETH_ARCHIVE_NAME="geth-$platform-amd64-$GETH_BUILD" curl "https://gethstore.blob.core.windows.net/builds/$GETH_ARCHIVE_NAME.tar.gz" | tar -xzvf - mv -f "$GETH_ARCHIVE_NAME/geth" ./ diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ea878283..eabea8d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -157,9 +157,9 @@ jobs: with: cache-on-failure: true - name: Check - run: rustup run wasm32-unknown-unknown cargo check --workspace + run: rustup run stable-wasm32-unknown-unknown cargo check --workspace - name: Check all features - run: rustup run wasm32-unknown-unknown cargo check --workspace --all-features + run: rustup run stable-wasm32-unknown-unknown cargo check --workspace --all-features - name: Install wasm-pack run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh