-
Notifications
You must be signed in to change notification settings - Fork 54
Open
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers
Description
What
Currently, jobs in test.yml are running following matrix:
smoke:
continue-on-error: true
strategy:
matrix:
file_system: ['ext4', 'zfs']
tpm: [true, false]Which generates following name:
Smoke tests (ext4, false)
We want it to be something more meaningful like :
Smoke tests (ext4, no-tpm)
How can we do that?
We can change tpm from boolean parameter to string and compare it to string throughout the test.yml.
Alternatively, if there's a way to change job names to
smoke:
continue-on-error: true
strategy:
matrix:
file_system: ['ext4', 'zfs']
tpm: [true, false]
name: "Smoke tests ${{ matrix.file_system }} tpm-enabled : ${{ matrix.tpm }}I prefer the latter, because it's less work and boolean comparison remains
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomers