ci: Remove redundant testing from continuous deployment workflow

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.
This commit is contained in:
Arcady Goldmints-Orlov 2024-09-02 15:22:52 -04:00 committed by arcady-lunarg
parent a496a34b43
commit 79c4235085

View File

@ -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:
@ -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
@ -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: