fix
This commit is contained in:
parent
f805e8a0f5
commit
362de60dd1
|
@ -14,7 +14,7 @@ echo "Installing Geth"
|
||||||
PLATFORM="$(uname -s)"
|
PLATFORM="$(uname -s)"
|
||||||
case "$PLATFORM" in
|
case "$PLATFORM" in
|
||||||
Linux|Darwin)
|
Linux|Darwin)
|
||||||
platform="$(echo "$PLATFORM" | awk "{print tolower($0)}")"
|
platform="$(echo "$PLATFORM" | awk '{print tolower($0)}')"
|
||||||
GETH_ARCHIVE_NAME="geth-$platform-amd64-$GETH_BUILD"
|
GETH_ARCHIVE_NAME="geth-$platform-amd64-$GETH_BUILD"
|
||||||
curl "https://gethstore.blob.core.windows.net/builds/$GETH_ARCHIVE_NAME.tar.gz" | tar -xzvf -
|
curl "https://gethstore.blob.core.windows.net/builds/$GETH_ARCHIVE_NAME.tar.gz" | tar -xzvf -
|
||||||
mv -f "$GETH_ARCHIVE_NAME/geth" ./
|
mv -f "$GETH_ARCHIVE_NAME/geth" ./
|
||||||
|
|
|
@ -157,9 +157,9 @@ jobs:
|
||||||
with:
|
with:
|
||||||
cache-on-failure: true
|
cache-on-failure: true
|
||||||
- name: Check
|
- 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
|
- 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
|
- name: Install wasm-pack
|
||||||
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh
|
||||||
|
|
Loading…
Reference in New Issue