Skip to content

Commit 09fd9c4

Browse files
committed
Merge branch 'master' into ci/tests_refactor
2 parents fca32d8 + fb933cd commit 09fd9c4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/tests.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,25 +27,25 @@ jobs:
2727
- name: Set matrix
2828
id: set-matrix
2929
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"'
3434
3535
is_pr=${{ github.event.pull_request.number != null }}
3636
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
3737
3838
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"'
4343
fi
4444
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
4949
5050
call-build-tests:
5151
name: Build tests

0 commit comments

Comments
 (0)