Skip to content

Commit

Permalink
Add GitHub workflows for macOS, Windows, and Ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinHelmut committed Mar 24, 2024
1 parent 0cdddbf commit c1c660c
Showing 1 changed file with 7 additions and 9 deletions.
16 changes: 7 additions & 9 deletions .github/workflows/cmake.yml → .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CMake
name: Release

on:
push:
Expand All @@ -11,16 +11,14 @@ env:

jobs:
build:
runs-on: macos-latest
strategy:
matrix:
os: [ macos-14, ubuntu-latest, windows-latest ]

steps:
- uses: actions/checkout@v3
runs-on: ${{ matrix.os }}

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

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

0 comments on commit c1c660c

Please sign in to comment.