Skip to content

Commit

Permalink
Add MacOS to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
RealNeGate committed Jan 5, 2023
1 parent edc1c09 commit f3525f3
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,30 @@ jobs:
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
make -j
timeout-minutes: 10
build_mac:
runs-on: macos-latest
strategy:
# Don't abort runners if a single one fails
fail-fast: false
matrix:
build_type: [Release, Debug]
llvm_version: [13, 14, 15]
steps:
- uses: actions/checkout@v1
run: |
brew update
brew install llvm@${{ matrix.llvm_version }} make
- name: Download Submodules
run: git submodule update --init --recursive

- name: Build TB
run: make -j
timeout-minutes: 10
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: seanmiddleditch/gha-setup-ninja@master
- name: Download LLVM
run: sudo apt-get install llvm-11 clang-11

Expand Down

0 comments on commit f3525f3

Please sign in to comment.