Skip to content

Commit

Permalink
ci:
Browse files Browse the repository at this point in the history
  • Loading branch information
JeremyTubongbanua committed Aug 13, 2023
1 parent bdb9391 commit cde25b3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,16 @@ jobs:
# # test-args: -V --output-on-failure

- name: CMake Configure
if: ${{ (matrix.os != 'windows-latest') || (matrix.package != 'atchops') }}
# if: ${{ (matrix.os != 'windows-latest') || (matrix.package != 'atchops') }}
working-directory: packages/${{matrix.package}}
run: |
cmake -S . -B build -DATCLIENT_BUILD_TESTS=ON -DATCHOPS_BUILD_TESTS=ON
- name: CMake Configure (Windows AtChops)
if: ${{ (matrix.os == 'windows-latest') && (matrix.package == 'atchops') }}
working-directory: packages/${{matrix.package}}
run: |
cmake -S . -B build -DATCHOPS_BUILD_TESTS=ON -DWINDOWS_BUILD=1 -DWINDOWS=1
# - name: CMake Configure (Windows AtChops)
# if: ${{ (matrix.os == 'windows-latest') && (matrix.package == 'atchops') }}
# working-directory: packages/${{matrix.package}}
# run: |
# cmake -S . -B build -DATCHOPS_BUILD_TESTS=ON -DWINDOWS_BUILD=1 -DWINDOWS=1

- name: Build and Install (Linux/MacOS)
if: ${{ matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest' }}
Expand All @@ -64,4 +64,4 @@ jobs:
if: ${{ matrix.os == 'windows-latest' }}
working-directory: packages/${{ matrix.package}}/build/tests
run: |
ctest -V --output-on-failure -C Debug --timeout 10
ctest -V --output-on-failure -C Debug --timeout 10 -DWINDOWS_BUILD=1 -DWINDOWS=1

0 comments on commit cde25b3

Please sign in to comment.