fix linux(??)

This commit is contained in:
rjindael 2023-07-17 23:51:25 -07:00
parent 296496d1a9
commit c718ddf370
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
1 changed files with 4 additions and 5 deletions

View File

@ -19,7 +19,7 @@ jobs:
- uses: awalsh128/cache-apt-pkgs-action@latest - uses: awalsh128/cache-apt-pkgs-action@latest
name: Install required packages name: Install required packages
with: with:
version: 1.0 version: 1.1
packages: >- packages: >-
git git
clang clang
@ -28,10 +28,9 @@ jobs:
libboost-dev libboost-dev
Libogre-1.12-dev Libogre-1.12-dev
libpugixml-dev libpugixml-dev
qt6-base-dev
- name: Let CMake recognize Qt - name: Install Qt
run: cp /usr/lib/x86_64-linux-gnu/cmake/Qt6/Qt6Config.cmake /usr/lib/cmake/Qt6 run: sudo apt-get install qt6-base-dev
- name: Generate Ninja build files - name: Generate Ninja build files
run: cmake -G Ninja -B build -DCI=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration == 'Release' && 'MinSizeRel' || matrix.configuration }} . run: cmake -G Ninja -B build -DCI=ON -DCMAKE_BUILD_TYPE=${{ matrix.configuration == 'Release' && 'MinSizeRel' || matrix.configuration }} .