From 9c351403853c7ae362cec17e3275c5cf0d33b128 Mon Sep 17 00:00:00 2001 From: Hayden Roche Date: Thu, 28 Sep 2023 08:44:53 -0700 Subject: [PATCH] wip --- .github/workflows/note-arduino-ci.yml | 3 ++- examples/build_example.sh | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/note-arduino-ci.yml b/.github/workflows/note-arduino-ci.yml index 21ce738..8de8e84 100644 --- a/.github/workflows/note-arduino-ci.yml +++ b/.github/workflows/note-arduino-ci.yml @@ -26,6 +26,7 @@ jobs: filters: | changed: - 'Dockerfile' + build_ci_docker_image: runs-on: ubuntu-latest needs: [check_dockerfile_changed] @@ -93,8 +94,8 @@ jobs: runs-on: ubuntu-latest if: ${{ always() }} needs: [build_ci_docker_image] - continue-on-error: true strategy: + fail-fast: false matrix: example-sketch: - ./examples/Example0_LibrarylessCommunication/Example0_LibrarylessCommunication.ino diff --git a/examples/build_example.sh b/examples/build_example.sh index e391302..6e5442e 100755 --- a/examples/build_example.sh +++ b/examples/build_example.sh @@ -6,7 +6,7 @@ NOTE_ARDUINO_DIR="$SCRIPT_DIR/.." # If this is being run inside a Docker container (i.e. for GitHub actions CI), # copy the latest note-arduino code into the appropriate place so that it can # be consumed when building the example. -if grep -sq 'docker\|lxc' /proc/1/cgroup; then +if [ -f /.dockerenv ]; then cp -r $NOTE_ARDUINO_DIR $HOME/Arduino/libraries/Blues_Wireless_Notecard fi