Skip to content

Commit

Permalink
Switch CI from Autotools to Meson
Browse files Browse the repository at this point in the history
  • Loading branch information
TobiX committed Dec 24, 2023
1 parent 6d711e8 commit 47ef579
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/compile.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
name: Compile
on:
- push
Expand All @@ -16,9 +17,11 @@ jobs:
- name: Checkout
uses: actions/checkout@v2
- name: Install requirements
run: sudo apt-get install automake intltool libgtk2.0-dev libtool-bin
run: sudo apt-get install intltool libgtk2.0-dev libtool-bin meson

- name: Build
env:
CC: ${{ matrix.compiler }}
run: ./autogen.sh && make
run:
- meson setup builddir
- ninja -C builddir

0 comments on commit 47ef579

Please sign in to comment.