We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be5cbd8 commit 5237e34Copy full SHA for 5237e34
.github/workflows/arch.yaml
@@ -11,11 +11,11 @@ jobs:
11
- name: Install dependencies
12
run: |
13
pacman -Syu --noconfirm
14
- pacman -S --noconfirm --needed meson ninja gmime3 nodejs git
+ pacman -S --noconfirm --needed cmake ninja gmime3 nodejs git
15
- uses: actions/checkout@v4
16
- - run: meson setup --buildtype release build
17
- - run: meson compile -C build
18
- - run: meson install -C build
+ - run: cmake -B build -G Ninja -DCMAKE_BUILD_TYPE=Release
+ - run: cmake --build build
+ - run: cmake --install build
19
env:
20
DESTDIR: ${{ github.workspace }}/install
21
- run: tar -zcvf install.tar.gz -C install .
0 commit comments