diff --git a/.github/workflows/note-arduino-ci.yml b/.github/workflows/note-arduino-ci.yml index 21ce738..53bf53c 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,7 +94,7 @@ jobs: runs-on: ubuntu-latest if: ${{ always() }} needs: [build_ci_docker_image] - continue-on-error: true + fail-fast: false strategy: matrix: example-sketch: diff --git a/examples/Example9_BinarySendReceiveChunked/Example9_BinarySendReceiveChunked.ino b/examples/Example9_BinarySendReceiveChunked/Example9_BinarySendReceiveChunked.ino index e54bd34..6c028d7 100644 --- a/examples/Example9_BinarySendReceiveChunked/Example9_BinarySendReceiveChunked.ino +++ b/examples/Example9_BinarySendReceiveChunked/Example9_BinarySendReceiveChunked.ino @@ -22,6 +22,8 @@ // #define txRxPinsSerial Serial1 #define usbSerial Serial +syntax error + // This is the unique Product Identifier for your device #ifndef PRODUCT_UID #define PRODUCT_UID "" // "com.my-company.my-name:my-project" diff --git a/examples/build_example.sh b/examples/build_example.sh index c427e32..6e5442e 100755 --- a/examples/build_example.sh +++ b/examples/build_example.sh @@ -6,10 +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. -echo "whoami: $(whoami)" if [ -f /.dockerenv ]; then - export HOME=/home/blues - echo "HOME: $HOME" cp -r $NOTE_ARDUINO_DIR $HOME/Arduino/libraries/Blues_Wireless_Notecard fi