Skip to content

Commit 41d37be

Browse files
committed
Add Meson and Ninja installation to GitHub Actions workflows
1 parent f7ca464 commit 41d37be

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/run-bench.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ jobs:
9090
- name: Set up GCC
9191
run: |
9292
sudo apt install -y gcc
93+
- name: Install Meson and Ninja
94+
run: |
95+
sudo apt update && sudo apt install -y meson ninja-build
9396
- uses: actions/checkout@v4
9497
- name: Set up JDK ${{ matrix.jdk }}
9598
uses: actions/setup-java@v3
@@ -241,6 +244,9 @@ jobs:
241244
needs: test-avx512
242245
runs-on: ubuntu-latest
243246
steps:
247+
- name: Install Meson and Ninja
248+
run: |
249+
sudo apt update && sudo apt install -y meson ninja-build
244250
- name: Checkout repository
245251
uses: actions/checkout@v4
246252

0 commit comments

Comments
 (0)