diff --git a/.github/workflows/all-builds.yml b/.github/workflows/all-builds.yml index 107e2e2..33b2371 100644 --- a/.github/workflows/all-builds.yml +++ b/.github/workflows/all-builds.yml @@ -38,20 +38,20 @@ jobs: if: matrix.os == 'windows-latest' shell: bash run: | - cmake -B build/ ${{ matrix.cmake }} -DQTK_UPDATE_SUBMODULES=ON -DQTK_DEBUG=OFF + cmake -B build/ ${{ matrix.cmake }} -DQTK_UPDATE_SUBMODULES=ON -DQTK_DEBUG=OFF -DQTK_ENABLE_CCACHE=OFF cmake --build build/ --config Release - name: Build Qtk if: matrix.os != 'windows-latest' shell: bash run: | - cmake -B build/ ${{ matrix.cmake }} -DQTK_UPDATE_SUBMODULES=ON -DQTK_DEBUG=OFF + cmake -B build/ ${{ matrix.cmake }} -DQTK_UPDATE_SUBMODULES=ON -DQTK_DEBUG=OFF -DQTK_ENABLE_CCACHE=OFF cmake --build build/ --config Release -- -j $(nproc) - name: Install Qtk shell: bash run: | - cmake --install build/ --config Release + cmake --install build/ --config Release --prefix=$(pwd)/install - uses: actions/upload-artifact@v3 if: always() @@ -130,14 +130,14 @@ jobs: if: matrix.os == 'windows-latest' shell: bash run: | - cmake -B build/ ${{ matrix.cmake }} -DQTK_DEBUG=OFF + cmake -B build/ ${{ matrix.cmake }} -DQTK_DEBUG=OFF -DQTK_ENABLE_CCACHE=OFF cmake --build build/ --config Release - name: Build Qtk if: matrix.os != 'windows-latest' shell: bash run: | - cmake -B build/ ${{ matrix.cmake }} -DQTK_DEBUG=OFF + cmake -B build/ ${{ matrix.cmake }} -DQTK_DEBUG=OFF -DQTK_ENABLE_CCACHE=OFF cmake --build build/ --config Release -- -j $(nproc) # TODO: Enable with tag only when done testing diff --git a/.github/workflows/linting.yml b/.github/workflows/linting.yml index 0f445a4..6c81fc2 100644 --- a/.github/workflows/linting.yml +++ b/.github/workflows/linting.yml @@ -14,7 +14,7 @@ jobs: - name: Install Qt uses: jurplel/install-qt-action@v2 with: - version: '6.3.1' + version: '6.5.0' - name: Install Assimp Ubuntu run: sudo apt install libassimp-dev