diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/macos.yml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml new file mode 100644 index 000000000..700d9f6a4 --- /dev/null +++ b/.github/workflows/macos.yml @@ -0,0 +1,33 @@ +name: MacOS Build CI + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + name: MacOS Build CI + + runs-on: macos-latest + + strategy: + matrix: + configuration: ['release'] # 'debug' + compiler: ['clang'] + platform: ['x64'] + + steps: + - uses: actions/checkout@v2.3.4 + with: + submodules: 'true' + fetch-depth: '0' + + - name: build + run: + CC=${{matrix.compiler}} + CONFIGURATION=${{matrix.configuration}} + ARCH=${{matrix.platform}} + source ./github_macos_build.sh +
\ No newline at end of file |
