forked from adafruit/Adafruit_nRF52_Arduino
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'adafruit/master'
- Loading branch information
Showing
540 changed files
with
203,244 additions
and
74,157 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Build | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
build: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
arduino-platform: ['cluenrf52840', 'cplaynrf52840', 'feather52832', 'feather52840', 'feather52840sense', 'itsybitsy52840'] | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Setup Python | ||
uses: actions/setup-python@v1 | ||
with: | ||
python-version: '3.x' | ||
|
||
- name: Checkout code | ||
uses: actions/checkout@v2 | ||
|
||
- name: Checkout submodules | ||
shell: bash | ||
run: | | ||
auth_header="$(git config --local --get http.https://github.com/.extraheader)" | ||
git submodule sync --recursive | ||
git -c "http.extraheader=$auth_header" -c protocol.version=2 submodule update --init --force --recursive | ||
- name: Install Arduino CLI and Tools | ||
run: | | ||
pip3 install adafruit-nrfutil | ||
# make all our directories we need for files and libraries | ||
mkdir $HOME/.arduino15 | ||
mkdir $HOME/.arduino15/packages | ||
mkdir $HOME/Arduino | ||
mkdir $HOME/Arduino/libraries | ||
curl -fsSL https://raw.githubusercontent.com/arduino/arduino-cli/master/install.sh | sh | ||
echo "::add-path::$GITHUB_WORKSPACE/bin" | ||
- name: Install BSP and Libraries | ||
env: | ||
BSP_URL: https://adafruit.github.io/arduino-board-index/package_adafruit_index.json | ||
BSP_PATH: .arduino15/packages/adafruit/hardware/nrf52 | ||
run: | | ||
arduino-cli config init | ||
arduino-cli core update-index | ||
arduino-cli core update-index --additional-urls $BSP_URL | ||
arduino-cli core install adafruit:nrf52 --additional-urls $BSP_URL | ||
# Repalce release BSP with our code | ||
BSP_VERSION=`eval ls $HOME/$BSP_PATH` | ||
rm -r $HOME/$BSP_PATH/* | ||
ln -s $GITHUB_WORKSPACE $HOME/$BSP_PATH/$BSP_VERSION | ||
# 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" | ||
# TODO update to support MIDI version 5 later on | ||
arduino-cli lib install "MIDI Library"@4.3.1 | ||
# 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 | ||
# Library summary | ||
arduino-cli lib list | ||
- name: Build examples | ||
run: python3 tools/build_all.py ${{ matrix.arduino-platform }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[submodule "cores/nRF5/TinyUSB/Adafruit_TinyUSB_ArduinoCore"] | ||
path = cores/nRF5/TinyUSB/Adafruit_TinyUSB_ArduinoCore | ||
url = https://github.com/adafruit/Adafruit_TinyUSB_ArduinoCore.git | ||
[submodule "libraries/Adafruit_nRFCrypto"] | ||
path = libraries/Adafruit_nRFCrypto | ||
url = https://github.com/adafruit/Adafruit_nRFCrypto.git |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.