Skip to content

Commit

Permalink
fix: use commit hash for extism cli on ci
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko authored Sep 16, 2024
1 parent 75a8e7c commit 3965955
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

- name: Update deps (Linux)
run: |
go install github.com/extism/cli/extism@main
go install github.com/extism/cli/extism@c1eb1fc
cd /tmp
# get just wasm-merge and wasm-opt
curl -L https://github.com/WebAssembly/binaryen/releases/download/version_116/binaryen-version_116-x86_64-linux.tar.gz > binaryen.tar.gz
Expand All @@ -45,7 +45,7 @@ jobs:
- name: Update deps (Windows)
run: |
powershell -executionpolicy bypass -File .\install-wasi-sdk.ps1
go install github.com/extism/cli/extism@main
go install github.com/extism/cli/extism@c1eb1fc
Remove-Item -Recurse -Path "c:\Program files\Binaryen" -Force -ErrorAction SilentlyContinue > $null 2>&1
New-Item -ItemType Directory -Force -Path "c:\Program files\Binaryen" -ErrorAction Stop > $null 2>&1
Invoke-WebRequest -Uri "https://github.com/WebAssembly/binaryen/releases/download/version_116/binaryen-version_116-x86_64-windows.tar.gz" -OutFile "$env:TMP\binaryen-version_116-x86_64-windows.tar.gz"
Expand Down

0 comments on commit 3965955

Please sign in to comment.