Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
haydenroche5 committed Sep 28, 2023
1 parent 0ba513a commit 9c35140
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/note-arduino-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
filters: |
changed:
- 'Dockerfile'
build_ci_docker_image:
runs-on: ubuntu-latest
needs: [check_dockerfile_changed]
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/build_example.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 9c35140

Please sign in to comment.