Skip to content

Commit

Permalink
changes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Dec 21, 2023
1 parent 78a192d commit 5f7ba2c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/actions/build/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: Build Ice on ${{ matrix.os }}

runs:
steps:
- name: Build
run: |
export PATH="/usr/lib/ccache:/usr/local/opt/ccache/libexec:$PATH"
make -j3 V=1
if: startsWith(matrix.os, 'ubuntu') || startsWith(matrix.os, 'macos')

- name: Build
run: msbuild /m /p:Platform=x64 ice.proj
if: startsWith(matrix.os, 'windows')

0 comments on commit 5f7ba2c

Please sign in to comment.