Skip to content

Commit

Permalink
ci: Pin WABT
Browse files Browse the repository at this point in the history
  • Loading branch information
chfast committed Aug 25, 2020
1 parent a5d40ca commit f3f84fb
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,12 @@ commands:
- run:
name: "Install WABT"
command: |
wast2json --version || (sudo apt-get -q update && sudo apt-get -yq install wabt)
if type wast2json; then
wast2json --version
else
cd /usr/local
curl -L https://github.com/WebAssembly/wabt/releases/download/1.0.19/wabt-1.0.19-ubuntu.tar.gz | tar xz --strip 1
fi
- run:
name: "Download spectest files"
working_directory: ~/build
Expand Down

0 comments on commit f3f84fb

Please sign in to comment.