Skip to content

Commit 5237e34

Browse files
committed
Update CI to use cmake.
1 parent be5cbd8 commit 5237e34

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/arch.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ jobs:
1111
- name: Install dependencies
1212
run: |
1313
pacman -Syu --noconfirm
14-
pacman -S --noconfirm --needed meson ninja gmime3 nodejs git
14+
pacman -S --noconfirm --needed cmake ninja gmime3 nodejs git
1515
- uses: actions/checkout@v4
16-
- run: meson setup --buildtype release build
17-
- run: meson compile -C build
18-
- run: meson install -C build
16+
- run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
17+
- run: cmake --build build
18+
- run: cmake --install build
1919
env:
2020
DESTDIR: ${{ github.workspace }}/install
2121
- run: tar -zcvf install.tar.gz -C install .

0 commit comments

Comments
 (0)