Skip to content

Commit

Permalink
ci: Remove redundant testing from continuous deployment workflow
Browse files Browse the repository at this point in the history
The runtests script is already run as part of the cmake-controlled
testing, so can be removed from the CD workflow like it was from the CI
ones.
  • Loading branch information
arcady-lunarg committed Sep 4, 2024
1 parent a496a34 commit 79c4235
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/continuous_deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,7 @@ jobs:
- name: Test
run: |
cd build
ctest --output-on-failure &&
cd ../Test && ./runtests
ctest --output-on-failure
- name: Zip
if: ${{ matrix.compiler.cc == 'clang' }}
env:
Expand Down Expand Up @@ -122,8 +121,7 @@ jobs:
- name: Test
run: |
cd build
ctest --output-on-failure &&
cd ../Test && ./runtests
ctest --output-on-failure
- name: Zip
env:
ARCHIVE: glslang-main-${{matrix.os.family}}-${{matrix.cmake_build_type}}.zip
Expand Down Expand Up @@ -176,7 +174,6 @@ jobs:
run: |
cd build
ctest -C ${{matrix.cmake_build_type}} --output-on-failure
cd ../Test && bash runtests
- name: Zip
if: ${{ matrix.cmake_build_type == 'Debug' }}
env:
Expand Down

0 comments on commit 79c4235

Please sign in to comment.