You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
595 B
27 lines
595 B
4 years ago
|
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 }}"
|