This commit is contained in:
rjindael 2023-07-17 23:22:31 -07:00
parent 21151ba528
commit 8e10515692
No known key found for this signature in database
GPG Key ID: D069369C906CCF31
1 changed files with 9 additions and 11 deletions

View File

@ -17,16 +17,15 @@ jobs:
submodules: recursive submodules: recursive
- name: Install required packages - name: Install required packages
run: sudo apt-get update && sudo apt-get install -y run: sudo apt-get update && sudo apt-get install -y \
git git \
clang \
clang cmake \
cmake ninja-build \
ninja-build libboost-dev \
libboost-dev libogre-1.12-dev \
libogre-1.12-dev libpugixml-dev \
libpugixml-dev qt6-base-dev
qt6-base-dev
- name: Generate Ninja build files - name: Generate Ninja build files
run: cmake -G Ninja -B build -D CI -D CMAKE_BUILD_TYPE=${{ matrix.configuration == 'Release' && 'MinSizeRel' || matrix.configuration }} . run: cmake -G Ninja -B build -D CI -D CMAKE_BUILD_TYPE=${{ matrix.configuration == 'Release' && 'MinSizeRel' || matrix.configuration }} .
@ -85,7 +84,6 @@ jobs:
msystem: ${{ matrix.sys }} msystem: ${{ matrix.sys }}
install: >- install: >-
git git
mingw-w64-${{ matrix.env }}-${{ matrix.sys == 'clang64' && 'clang' || 'gcc' }} mingw-w64-${{ matrix.env }}-${{ matrix.sys == 'clang64' && 'clang' || 'gcc' }}
mingw-w64-${{ matrix.env }}-cmake mingw-w64-${{ matrix.env }}-cmake
mingw-w64-${{ matrix.env }}-ninja mingw-w64-${{ matrix.env }}-ninja