Skip to content

Commit

Permalink
CI: Use meson build
Browse files Browse the repository at this point in the history
  • Loading branch information
nowrep committed Sep 16, 2024
1 parent dee0464 commit 3bd6fb4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ jobs:
- name: Dependencies
run: |
sudo apt update
sudo apt install libhidapi-dev libdbus-1-dev libudev-dev
sudo apt install meson libhidapi-dev libdbus-1-dev libudev-dev
- name: Build
run: make -C ${{github.workspace}}
run: meson setup ${{github.workspace}}/build && ninja -C ${{github.workspace}}/build

- name: Install
run: sudo make -C ${{github.workspace}} install
run: sudo ninja -C ${{github.workspace}}/build install

0 comments on commit 3bd6fb4

Please sign in to comment.