Skip to content

Commit

Permalink
build: Try to build on macos
Browse files Browse the repository at this point in the history
  • Loading branch information
ianichitei committed Feb 23, 2024
1 parent 357b95d commit afc3e94
Showing 1 changed file with 19 additions and 4 deletions.
23 changes: 19 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: C/C++ CI
on:
push:
branches: [ master ]
paths-ignore:
paths-ignore:
- '*.md'
- 'docs/**'
- 'isagenerator/**'
Expand All @@ -12,7 +12,7 @@ on:
- 'LICENSE'
pull_request:
branches: [ master ]
paths-ignore:
paths-ignore:
- '*.md'
- 'docs/**'
- 'isagenerator/**'
Expand All @@ -21,7 +21,7 @@ on:
- 'LICENSE'
release:
types: [published]


jobs:
Linux-build:
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
with:
files: 'x64-windows-release.zip;x86-windows-release.zip'
repo-token: ${{ secrets.GITHUB_TOKEN }}

Windows-cmake-build:

runs-on: windows-latest
Expand All @@ -117,6 +117,21 @@ jobs:
ninja
cd -
jobs:
Macos-build:

runs-on: macos-latest

steps:
- uses: actions/checkout@v3
- name: Build all
run: |
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j$(nproc)
cd -
Code-checks:

runs-on: ubuntu-latest
Expand Down

0 comments on commit afc3e94

Please sign in to comment.