Skip to content

Commit

Permalink
Merge branch 'master' into temp
Browse files Browse the repository at this point in the history
  • Loading branch information
hathach committed Nov 30, 2023
2 parents ab62290 + e1f1884 commit a71a669
Show file tree
Hide file tree
Showing 82 changed files with 51,939 additions and 51,687 deletions.
3 changes: 3 additions & 0 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,6 @@ contact_links:
- name: Adafruit Support Forum
url: https://forums.adafruit.com
about: If you have other questions or need help, post it here.
- name: Discussion
url: https://github.com/adafruit/Adafruit_nRF52_Arduino/discussions
about: If you have other questions or need help, post it here.
22 changes: 11 additions & 11 deletions .github/workflows/githubci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,13 @@ name: Build

on: [pull_request, push]

concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true

jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
Expand All @@ -16,17 +21,15 @@ jobs:
- 'feather52840sense'
- 'itsybitsy52840'
- 'ledglasses_nrf52840'

runs-on: ubuntu-latest

steps:
- name: Setup Python
uses: actions/setup-python@v1
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'true'

Expand Down Expand Up @@ -58,14 +61,11 @@ jobs:
# Install library dependency
arduino-cli lib install "Adafruit AHRS" "Adafruit APDS9960 Library" "Adafruit Arcada Library" "Adafruit BMP280 Library" "Adafruit Circuit Playground" "Adafruit EPD" "Adafruit GFX Library" "Adafruit HX8357 Library" "Adafruit ILI9341" "Adafruit LIS3MDL" "Adafruit LSM6DS" "Adafruit NeoPixel" "Adafruit NeoMatrix" "Adafruit Sensor Calibration" "Adafruit SHT31 Library" "Adafruit SSD1306" "Adafruit ST7735 and ST7789 Library" "SdFat - Adafruit Fork"
arduino-cli lib install "Arduino_TensorFlowLite" "MIDI Library"
arduino-cli lib install "MIDI Library" "Firmata"
# TODO use firmata master to prevent build error with gcc v9 (should be remove after 2.5.9 is released)
# https://github.com/firmata/arduino/pull/438
git clone --depth 1 https://github.com/firmata/arduino.git $HOME/Arduino/libraries/firmata
# TODO temporarily remove TinyUSB pre-1.0.0 version install by arduino-cli
rm -r $HOME/Arduino/libraries/Adafruit_TinyUSB_Library
# Arduino_TensorFlowLite is removed per maintainer request https://github.com/arduino/library-registry/pull/1748
# Find a way to compile later, skip TFL example for now
# arduino-cli lib install "Arduino_TensorFlowLite"
# Library summary
arduino-cli lib list
Expand Down
7 changes: 5 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@
*.obj

# Visual Studio Code
**/.vscode/
.vscode/
.idea/
.pio/
.piopm

# Executables
*.out
Expand All @@ -20,4 +23,4 @@
# Ignore local overrides of platform.txt and boards.txt,
/boards.local.txt
/platform.local.txt
/libraries/**/build/

Loading

0 comments on commit a71a669

Please sign in to comment.