summaryrefslogtreecommitdiff
path: root/.github/workflows/cmake.yml
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-06-21 21:04:15 +0430
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-06-22 00:26:25 +0430
commit79d4913f7640399fd892e8561bb6fe895ce0f41d (patch)
tree79f3e61a5004d85ebb31929fe491ecee594b218d /.github/workflows/cmake.yml
parentc4b82ace74069d61d84f8cb5f1298352632bd6ad (diff)
downloadserenity-79d4913f7640399fd892e8561bb6fe895ce0f41d.zip
LibWasm: Generate all spec tests, even ones that aren't valid modules
`wasm-as` will do some semantic analysis on the modules, which is not something we're looking for here. Instead, use `wat2wasm` to generate the exact module.
Diffstat (limited to '.github/workflows/cmake.yml')
-rw-r--r--.github/workflows/cmake.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/cmake.yml b/.github/workflows/cmake.yml
index 9b77370ebb..a70dcda7b9 100644
--- a/.github/workflows/cmake.yml
+++ b/.github/workflows/cmake.yml
@@ -196,15 +196,15 @@ jobs:
run: |
sudo apt-get purge -y clang-11
sudo apt-get update
- sudo apt-get install ninja-build binaryen
+ sudo apt-get install ninja-build wabt
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-12 100
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-12 100
if: ${{ runner.os == 'Linux' }}
- name: Install macOS dependencies
- run: brew install ninja binaryen
+ run: brew install ninja wabt
if: ${{ runner.os == 'macOS' }}
- name: Check versions
- run: set +e; clang --version; clang++ --version; ninja --version; wasm-as --version
+ run: set +e; clang --version; clang++ --version; ninja --version; wat2wasm --version
# === PREPARE FOR BUILDING ===