Skip to content

Commit

Permalink
Fixed CI/CD (I hope)
Browse files Browse the repository at this point in the history
  • Loading branch information
DarellLdark committed Sep 19, 2023
1 parent 371d53a commit d384f72
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cmake_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,24 +32,28 @@ jobs:
compiler: gcc
qt_version: "5.15.2"
modules: ""
use_qt6: "OFF"

- toolchain: macos-clang
os: macos-latest
compiler: clang
qt_version: "5.15.2"
modules: ""
use_qt6: "OFF"

- toolchain: windows-msvc
os: windows-latest
compiler: msvc
qt_version: "5.15.2"
modules: ""
use_qt6: "OFF"

- toolchain: windows-msvc
os: windows-latest
compiler: msvc
qt_version: "6.3.0"
modules: "qt5compat"
use_qt6: "ON"

steps:
- name: Checkout Code
Expand All @@ -74,7 +78,7 @@ jobs:
arch: x64

- name: Configure (${{ matrix.configuration }})
run: cmake -S . -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DBUILD_DOCS=OFF -DUSE_QT6=OFF
run: cmake -S . -Bbuild -DCMAKE_BUILD_TYPE=${{ matrix.configuration }} -DBUILD_DOCS=OFF -DUSE_QT6=${{ matrix.use_qt6 }}

- name: Build with ${{ matrix.compiler }}
run: cmake --build build --config ${{ matrix.configuration }}

0 comments on commit d384f72

Please sign in to comment.