From 79c4235085c5eb86ed78b034d94e03f7b3b5daef Mon Sep 17 00:00:00 2001 From: Arcady Goldmints-Orlov Date: Mon, 2 Sep 2024 15:22:52 -0400 Subject: [PATCH] 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. --- .github/workflows/continuous_deployment.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/continuous_deployment.yml b/.github/workflows/continuous_deployment.yml index 40a240b3c..53d84084e 100644 --- a/.github/workflows/continuous_deployment.yml +++ b/.github/workflows/continuous_deployment.yml @@ -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: