From d10945f5b1d6f839aba8beb7f9b52637e2287fe1 Mon Sep 17 00:00:00 2001 From: Kevin Granade Date: Thu, 5 Dec 2024 12:14:30 -0800 Subject: [PATCH] Revert "Improve readability of skip clauses for matrix build" --- .github/workflows/matrix.yml | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/.github/workflows/matrix.yml b/.github/workflows/matrix.yml index e5db5198197f2..dfd5635e77488 100644 --- a/.github/workflows/matrix.yml +++ b/.github/workflows/matrix.yml @@ -235,12 +235,7 @@ jobs: CCACHE_FILECLONE: true CCACHE_HARDLINK: true CCACHE_NOCOMPRESS: true - SKIP: > - ${{ - ( github.event.pull_request.draft == true && matrix.title != 'Basic Build and Test (Clang 10, Ubuntu, Curses)' ) || - ( matrix.dont_skip_data_only_changes == 0 && needs.skip-duplicates.outputs.should_skip_code == 'true' ) || - ( matrix.dont_skip_data_only_changes != 0 && needs.skip-duplicates-mods.outputs.should_skip_data == 'true' ) - }} + SKIP: ${{ ( github.event.pull_request.draft == true && matrix.title != 'Basic Build and Test (Clang 10, Ubuntu, Curses)' ) || ( matrix.dont_skip_data_only_changes == 0 && needs.skip-duplicates.outputs.should_skip_code == 'true' ) || ( matrix.dont_skip_data_only_changes != 0 && needs.skip-duplicates-mods.outputs.should_skip_data == 'true' ) }} SKIP_TESTS: ${{ needs.matrix-variables.outputs.skip_tests }} steps: - name: Maximize build space