fix
This commit is contained in:
parent
f805e8a0f5
commit
362de60dd1
|
@ -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" ./
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue