Compare commits

...

1 Commits

Author SHA1 Message Date
Shaun Reed ef950f0361 CI 2023-01-29 13:45:28 -05:00
1 changed files with 5 additions and 5 deletions

View File

@ -38,20 +38,20 @@ jobs:
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
shell: bash shell: bash
run: | 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 cmake --build build/ --config Release
- name: Build Qtk - name: Build Qtk
if: matrix.os != 'windows-latest' if: matrix.os != 'windows-latest'
shell: bash shell: bash
run: | 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) cmake --build build/ --config Release -- -j $(nproc)
- name: Install Qtk - name: Install Qtk
shell: bash shell: bash
run: | run: |
cmake --install build/ --config Release cmake --install build/ --config Release --prefix=$(pwd)/install
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
if: always() if: always()
@ -130,14 +130,14 @@ jobs:
if: matrix.os == 'windows-latest' if: matrix.os == 'windows-latest'
shell: bash shell: bash
run: | 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 cmake --build build/ --config Release
- name: Build Qtk - name: Build Qtk
if: matrix.os != 'windows-latest' if: matrix.os != 'windows-latest'
shell: bash shell: bash
run: | 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) cmake --build build/ --config Release -- -j $(nproc)
# TODO: Enable with tag only when done testing # TODO: Enable with tag only when done testing