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.
 
 
 
 
 
libepoxy/.github/workflows/macos.yml

26 lines
595 B

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 }}"