Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
tobiashienzsch committed Sep 30, 2023
1 parent 1fb6cfb commit 109cf73
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 17 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ on:
branches: [main]

jobs:
clang-14:
name: Clang-14
clang:
name: Clang
runs-on: ubuntu-22.04
steps:
- name: Check out code
Expand Down Expand Up @@ -36,7 +36,8 @@ jobs:
conan profile update conf.tools.system.package_manager:mode=install default
conan profile update conf.tools.system.package_manager:sudo=True default
- name: Build - Release
run: |
cmake -S. -Bbuild -G Ninja -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_COMPILER="clang-16" -D CMAKE_CXX_COMPILER="clang++-16"
cmake --build build --config Release
- name: CMake config
run: cmake -S. -Bbuild -G Ninja -D CMAKE_BUILD_TYPE=Release -D CMAKE_C_COMPILER="clang-16" -D CMAKE_CXX_COMPILER="clang++-16"

- name: CMake build
run: cmake --build build --config Release
15 changes: 8 additions & 7 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ on:
branches: [main]

jobs:
macos-11:
name: macOS 11
runs-on: macos-11
macos-12:
name: macOS 12
runs-on: macos-12
steps:
- name: Check out code
uses: actions/checkout@v3
Expand All @@ -25,7 +25,8 @@ jobs:
conan config init
conan config set general.revisions_enabled=1
- name: Build - Release
run: |
cmake -S. -Bbuild -G Ninja -D CMAKE_BUILD_TYPE=Release
cmake --build build --config Release
- name: CMake config
run: cmake -S. -Bbuild -G Ninja -D CMAKE_BUILD_TYPE=Release

- name: CMake build
run: cmake --build build --config Release
9 changes: 5 additions & 4 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,8 @@ jobs:
with:
arch: x64

- name: Build - Release
run: |
cmake -S. -Bbuild -G "Visual Studio 17 2022" -D CMAKE_BUILD_TYPE=Release
cmake --build build --config Release
- name: CMake config
run: cmake -S. -B build -G Ninja -D CMAKE_BUILD_TYPE=Release

- name: CMake build
run: cmake --build build --config Release
Empty file.

0 comments on commit 109cf73

Please sign in to comment.