Skip to content

Commit bce4f25

Browse files
committed
github: test_mode fixes
Ensure we use kdevops-ci or linux-ci for tests_mode. Fixes: 055b17a ("github: simplify runner assignment to server-based tags") Signed-off-by: Daniel Gomez <[email protected]>
1 parent ec43277 commit bce4f25

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/actions/test/action.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ inputs:
1515
test_mode:
1616
description: 'Testing mode'
1717
required: false
18-
default: 'full-testing'
18+
default: 'kdevops-ci'
1919
tests:
20-
description: 'Custom test to run (for kdevops-validation mode only)'
20+
description: 'Custom test to run'
2121
required: false
2222
default: ''
2323

@@ -38,7 +38,7 @@ runs:
3838
if [[ -n "${{ inputs.tests }}" ]]; then
3939
# Custom test specified for kdevops-validation mode
4040
TESTS="${{ inputs.tests }}"
41-
elif [[ "${{ inputs.test_mode }}" == "kdevops-validation" ]]; then
41+
elif [[ "${{ inputs.test_mode }}" == "kdevops-ci" ]]; then
4242
# Auto-assign appropriate test based on workflow
4343
case "${{ inputs.ci_workflow }}" in
4444
*fstests*|*xfs*|*btrfs*|*ext4*|*tmpfs*)
@@ -205,7 +205,7 @@ runs:
205205
export KERNEL_TREE="${{ inputs.kernel_tree || 'linux' }}"
206206
export TEST_MODE="${{ inputs.test_mode }}"
207207
208-
# Get TESTS from GitHub output (determines kdevops validation vs full testing)
208+
# Get TESTS from GitHub output (determines kdevops-ci vs linux-ci)
209209
TESTS="${{ steps.ci_test.outputs.TESTS }}"
210210
if [[ -n "${TESTS:-}" ]]; then
211211
export TESTS="$TESTS"

0 commit comments

Comments
 (0)