Skip to content

Commit

Permalink
Install CMake from the official release tarball
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Apr 26, 2024
1 parent d4e06e8 commit 4f1452c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,8 +83,12 @@ jobs:
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Install Ninja
run: apt-get update && apt-get install -y ninja-build
- name: Install CMake
run: apt-get update && apt-get install -y cmake ninja-build
run: |
apt-get install -y curl
curl -L https://github.com/Kitware/CMake/releases/download/v3.29.2/cmake-3.29.2-linux-x86_64.tar.gz | tar xz --strip-component 1 -C /usr/local/
- run: cmake -G Ninja -B ./build
- run: cmake --build ./build
- run: ./build/bin/wasmkit-cli --version

0 comments on commit 4f1452c

Please sign in to comment.