Skip to content

Commit

Permalink
ci: add meson CI workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
brenfwd committed Feb 7, 2024
1 parent eac1ff9 commit a3f0acb
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build-meson.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: build-meson

on: [push, pull_request]

jobs:
meson:
timeout-minutes: 60
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Meson
env:
DEBIAN_FRONTEND: noninteractive
run: |
sudo apt-get update --fix-missing
sudo apt-get install -y meson
- name: Meson Build (shared)
run: |
meson setup build
meson compile -C build
- name: Meson Build (static)
run: |
rm -rf build/
meson setup build --default-library=static
meson compile -C build

0 comments on commit a3f0acb

Please sign in to comment.