Skip to content

Commit c1c660c

Browse files
committed
Add GitHub workflows for macOS, Windows, and Ubuntu
1 parent 0cdddbf commit c1c660c

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

Diff for: .github/workflows/cmake.yml renamed to .github/workflows/release.yml

+7-9
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CMake
1+
name: Release
22

33
on:
44
push:
@@ -11,16 +11,14 @@ env:
1111

1212
jobs:
1313
build:
14-
runs-on: macos-latest
14+
strategy:
15+
matrix:
16+
os: [ macos-14, ubuntu-latest, windows-latest ]
1517

16-
steps:
17-
- uses: actions/checkout@v3
18+
runs-on: ${{ matrix.os }}
1819

19-
- name: Install GitHub CLI
20-
run: |
21-
brew install llvm
22-
ln -s "$(brew --prefix llvm)/bin/clang-format" "/usr/local/bin/clang-format"
23-
ln -s "$(brew --prefix llvm)/bin/clang-tidy" "/usr/local/bin/clang-tidy"
20+
steps:
21+
- uses: actions/checkout@v4
2422

2523
- name: Configure CMake
2624
run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}}

0 commit comments

Comments
 (0)