Skip to content

Commit 26499f5

Browse files
committed
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.
1 parent 499fbcd commit 26499f5

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/nightly.yml

+3
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,10 @@ jobs:
3737
fail-fast: false
3838
matrix:
3939
branch: ${{ fromJson(needs.GENERATE_MATRIX.outputs.branches) }}
40+
configuration_parameters: ['']
4041
debug: [true, false]
42+
name: ['']
43+
run_tests_parameters: ['']
4144
zts: [true, false]
4245
include: ${{ fromJson(needs.GENERATE_MATRIX.outputs.matrix-include) }}
4346
name: "${{ matrix.branch.name }}_LINUX_X64${{ matrix.name }}_${{ matrix.debug && 'DEBUG' || 'RELEASE' }}_${{ matrix.zts && 'ZTS' || 'NTS' }}"

0 commit comments

Comments
 (0)