Skip to content

Commit

Permalink
Fix go
Browse files Browse the repository at this point in the history
  • Loading branch information
octol committed Sep 8, 2024
1 parent 79b2c6c commit 8d22e19
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci-sdk-wasm.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,17 @@ jobs:
with:
go-version: '1.20'

- name: Override GOROOT and GOTOOLDIR
if: contains(matrix.os, 'ubuntu')
run: |
echo "Setting correct GOROOT and GOTOOLDIR"
unset GOROOT
unset GOTOOLDIR
export GOROOT=$(go env GOROOT)
export GOTOOLDIR=$(go env GOTOOLDIR)
echo "GOROOT=$GOROOT" >> $GITHUB_ENV
echo "GOTOOLDIR=$GOTOOLDIR" >> $GITHUB_ENV
- name: Install wasm-pack
run: curl https://rustwasm.github.io/wasm-pack/installer/init.sh -sSf | sh

Expand Down

0 comments on commit 8d22e19

Please sign in to comment.