Skip to content

Commit 6dec822

Browse files
committed
test
1 parent ce47ef4 commit 6dec822

File tree

2 files changed

+9
-10
lines changed

2 files changed

+9
-10
lines changed

.github/workflows/hw.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@ jobs:
6262
6363
- name: Install APT dependencies
6464
if: ${{ steps.check-tests.outputs.enabled == 'true' }}
65-
uses: awalsh128/[email protected]
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
6968
7069
# To avoid giving unknown scripts elevated permissions, download them from the master branch
7170
- name: Get CI scripts from master

.github/workflows/tests.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ jobs:
4545
is_pr=${{ github.event.pull_request.number != null }}
4646
is_performance_enabled=${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}
4747
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
5454
5555
echo "build-types=$build_types]" >> $GITHUB_OUTPUT
5656
echo "hw-types=$hw_types]" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)