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 7cdf7e4
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions 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 | sudo tar xz --strip 1
fi
- run:
name: "Download spectest files"
working_directory: ~/build
Expand Down Expand Up @@ -427,16 +432,16 @@ workflows:
testing:
unless: <<pipeline.parameters.benchmark>>
jobs:
- lint
- release-linux
- release-native-linux
- release-macos
- release-native-macos
# - lint
# - release-linux
# - release-native-linux
# - release-macos
# - release-native-macos
- coverage
- cxx20
- sanitizers
- sanitizers-macos
- fuzzing
# - cxx20
# - sanitizers
# - sanitizers-macos
# - fuzzing
- spectest:
requires:
- coverage
Expand Down

0 comments on commit 7cdf7e4

Please sign in to comment.