File tree Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Expand file tree Collapse file tree 2 files changed +9
-10
lines changed Original file line number Diff line number Diff line change 62
62
63
63
- name : Install APT dependencies
64
64
if : ${{ steps.check-tests.outputs.enabled == 'true' }}
65
-
66
- with :
67
- packages : curl jq lsb-release
68
- version : 1.0
65
+ run : |
66
+ apt-get update
67
+ apt-get install -y --no-install-recommends curl jq lsb-release
69
68
70
69
# To avoid giving unknown scripts elevated permissions, download them from the master branch
71
70
- name : Get CI scripts from master
Original file line number Diff line number Diff line change @@ -45,12 +45,12 @@ jobs:
45
45
is_pr=${{ github.event.pull_request.number != null }}
46
46
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
47
47
48
- # if [[ $is_pr != 'true' ]] || [[ $is_performance_enabled == 'true' ]]; then
49
- # build_types+=',"performance"'
50
- # hw_types+=',"performance"'
51
- # #wokwi_types+=',"performance"'
52
- # #qemu_types+=',"performance"'
53
- # fi
48
+ if [[ $is_pr != 'true' ]] || [[ $is_performance_enabled == 'true' ]]; then
49
+ build_types+=',"performance"'
50
+ hw_types+=',"performance"'
51
+ #wokwi_types+=',"performance"'
52
+ #qemu_types+=',"performance"'
53
+ fi
54
54
55
55
echo "build-types=$build_types]" >> $GITHUB_OUTPUT
56
56
echo "hw-types=$hw_types]" >> $GITHUB_OUTPUT
You can’t perform that action at this time.
0 commit comments