aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/ci.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/ci.yaml')
-rw-r--r--.github/workflows/ci.yaml15
1 files changed, 15 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
index 1ced2c2..7938dbf 100644
--- a/.github/workflows/ci.yaml
+++ b/.github/workflows/ci.yaml
@@ -29,6 +29,21 @@ jobs:
CC: gcc
- run: meson compile -C builddir/
+ build-macos-meson:
+ runs-on: macos-latest
+ steps:
+ - uses: actions/checkout@v4
+ - uses: actions/setup-python@v5
+ with:
+ python-version: '3.10'
+ cache: 'pip'
+ - run: pip install meson ninja
+ - run: clang -v
+ - run: meson setup builddir/
+ env:
+ CC: clang
+ - run: meson compile -C builddir/
+
build-msvc-meson:
runs-on: windows-latest
steps: