Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
RealNeGate committed Jan 5, 2023
1 parent e0f4dff commit 9692060
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,24 @@ jobs:
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat
make -j
timeout-minutes: 10

- name: upload artifacts
uses: actions/upload-artifact@v3
with:
name: c3-windows-${{ matrix.build_type }}
path: build\${{ matrix.build_type }}\c3c.exe
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

- name: Download LLVM and Make
run: |
brew update
brew install llvm@${{ matrix.llvm_version }} make
brew install llvm@14 make
- name: Download Submodules
run: git submodule update --init --recursive
Expand Down

0 comments on commit 9692060

Please sign in to comment.