Skip to content

Commit d140a04

Browse files
committed
ci(runtime): Fix workflow
1 parent cd21f77 commit d140a04

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/scripts/sketch_utils.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@ function install_libs { # install_libs <ide_path> <sketchdir> [-v]
648648

649649
local libs_type
650650
libs_type=$(yq eval '.libs | type' "$sketchdir/ci.yml" 2>/dev/null)
651-
if [ -z "$libs_type" ] || [ "$libs_type" = "null" ]; then
651+
if [ -z "$libs_type" ] || [ "$libs_type" = "null" ] || [ "$libs_type" = "!!null" ]; then
652652
[ "$verbose" = true ] && echo "No libs field found in ci.yml, skipping library installation"
653653
return 0
654654
elif [ "$libs_type" != "!!seq" ]; then

.github/workflows/tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ jobs:
5454
runs-on: ubuntu-latest
5555
outputs:
5656
build-types: ${{ steps.set-matrix.outputs.build-types }}
57-
hw-targets: ${{ steps.set-matrix.outputs.hw-targets }}
57+
hw-targets: ${{ steps.set-matrix.outputs.hw_targets }}
5858
qemu-types: ${{ steps.set-matrix.outputs.qemu-types }}
59-
qemu-targets: ${{ steps.set-matrix.outputs.qemu-targets }}
59+
qemu-targets: ${{ steps.set-matrix.outputs.qemu_targets }}
6060
env:
6161
IS_PR: ${{ github.event.pull_request.number != null }}
6262
PERFORMANCE_ENABLED: ${{ contains(github.event.pull_request.labels.*.name, 'perf_test') }}

0 commit comments

Comments
 (0)