aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/macos.yml
diff options
context:
space:
mode:
authorAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-11-30 02:09:33 +0000
committerAndroid Build Coastguard Worker <android-build-coastguard-worker@google.com>2022-11-30 02:09:33 +0000
commit28a99b8f526279e4a58fb4a78718d42c02bdab0d (patch)
tree2c0a48f4a5f4adf79a5f761e02a364cc13f519d7 /.github/workflows/macos.yml
parent3b2cb36695f390131855967919bc7f3beed73b01 (diff)
parent0146411f7d7d31c4dc8321fd2626f8a7fb905f25 (diff)
downloadlibepoxy-android-14.0.0_r28.tar.gz
Change-Id: Ic87aef5f3b4ca4239912b47d7e55c8b223adec5a
Diffstat (limited to '.github/workflows/macos.yml')
-rw-r--r--.github/workflows/macos.yml26
1 files changed, 26 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml
new file mode 100644
index 0000000..c725ef1
--- /dev/null
+++ b/.github/workflows/macos.yml
@@ -0,0 +1,26 @@
+name: macOS
+on:
+ push:
+ branches-ignore:
+ - debian
+ - khronos-registry
+jobs:
+ build:
+ strategy:
+ matrix:
+ build-opts:
+ - ''
+ - '-Dglx=no'
+ - '-Degl=no'
+ - '-Dx11=false'
+ runs-on: macos-10.15
+ steps:
+ - uses: actions/checkout@v2
+ - uses: actions/setup-python@v2
+ with:
+ python-version: 3.x
+ - run: |
+ brew install ninja
+ python -m pip install --upgrade pip
+ pip3 install meson
+ /bin/sh -c "CC=clang .github/scripts/epoxy-ci-osx.sh ${{ matrix.build-opts }}"