From 26499f53fb18b33e20e1d23043236ffbd1168938 Mon Sep 17 00:00:00 2001 From: Ilija Tovilo Date: Thu, 6 Oct 2022 17:50:46 +0200 Subject: [PATCH] Add empty default params to nightly linux matrix https://docs.github.com/en/actions/using-jobs/using-a-matrix-for-your-jobs#expanding-or-adding-matrix-configurations > For each object in the include list, the key:value pairs in the object will be > added to each of the matrix combinations if none of the key:value pairs > overwrite any of the original matrix values. Hopefully this change can avoid that. --- .github/workflows/nightly.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index bf353b32220..cfb361b4bb8 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -37,7 +37,10 @@ jobs: fail-fast: false matrix: branch: ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches) }} + configuration_parameters: [''] debug: [true, false] + name: [''] + run_tests_parameters: [''] zts: [true, false] include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.matrix-include) }} name: "${{ matrix.branch.name }}_LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"