Skip to content

Commit 2f4f11e

Browse files
committed
test
1 parent 3bd9558 commit 2f4f11e

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.github/scripts/sketch_utils.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
set -e
4+
35
function build_sketch(){ # build_sketch <ide_path> <user_path> <path-to-ino> [extra-options]
46
while [ ! -z "$1" ]; do
57
case "$1" in

.github/scripts/tests_run.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
#!/bin/bash
22

3+
set -e
4+
35
function run_test() {
46
local target=$1
57
local sketch=$2

.github/workflows/hw.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ jobs:
7878
run: |
7979
pip install -U pip
8080
pip install -r tests/requirements.txt --extra-index-url https://dl.espressif.com/pypi
81-
sudo apt update
82-
sudo apt install -y jq
81+
apt update
82+
apt install -y jq
8383
8484
- name: Get binaries
8585
if: ${{ steps.check-tests.outputs.enabled == 'true' }}

0 commit comments

Comments
 (0)