@@ -27,25 +27,25 @@ jobs:
27
27
- name : Set matrix
28
28
id : set-matrix
29
29
run : |
30
- build_types=\[\ "validation\"
31
- hw_types=\[\ "validation\"
32
- wokwi_types=\ ["validation\"
33
- qemu_types=\[\ "validation\"
30
+ build_types='[ "validation"'
31
+ hw_types='[ "validation"'
32
+ wokwi_types=' ["validation"'
33
+ qemu_types='[ "validation"'
34
34
35
35
is_pr=${{ github.event.pull_request.number != null }}
36
36
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
37
37
38
38
if [[ $is_pr != 'true' ]] || [[ $is_performance_enabled == 'true' ]]; then
39
- build_types+=,\ "performance\"
40
- hw_types+=,\ "performance\"
41
- #wokwi_types+=,\ "performance\"
42
- #qemu_types+=,\ "performance\"
39
+ build_types+=', "performance"'
40
+ hw_types+=', "performance"'
41
+ #wokwi_types+=', "performance"'
42
+ #qemu_types+=', "performance"'
43
43
fi
44
44
45
- echo "build-types=$build_types\ ]" >> $GITHUB_OUTPUT
46
- echo "hw-types=$hw_types\ ]" >> $GITHUB_OUTPUT
47
- echo "wokwi-types=$wokwi_types\ ]" >> $GITHUB_OUTPUT
48
- echo "qemu-types=$qemu_types\ ]" >> $GITHUB_OUTPUT
45
+ echo "build-types=$build_types]" >> $GITHUB_OUTPUT
46
+ echo "hw-types=$hw_types]" >> $GITHUB_OUTPUT
47
+ echo "wokwi-types=$wokwi_types]" >> $GITHUB_OUTPUT
48
+ echo "qemu-types=$qemu_types]" >> $GITHUB_OUTPUT
49
49
50
50
call-build-tests :
51
51
name : Build tests
0 commit comments