Add sketch folder include path to compiler flags #93
Workflow file for this run
This file contains hidden or 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
| name: Build | |
| on: [pull_request, push] | |
| jobs: | |
| build: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| arduino-platform: | |
| # Alphabetical order | |
| - 'xiaonRF52840' | |
| - 'xiaonRF52840Sense' | |
| - 'wio_tracker_1110' | |
| - 'xiaonRF52840Plus' | |
| - 'xiaonRF52840SensePlus' | |
| - 'tracker_t1000_e_lorawan' | |
| 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 | |
| with: | |
| submodules: 'true' | |
| - 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 $GITHUB_WORKSPACE/bin >> $GITHUB_PATH | |
| - name: Install BSP and Libraries | |
| env: | |
| BSP_URL: https://files.seeedstudio.com/arduino/package_seeeduino_boards_index.json | |
| BSP_PATH: .arduino15/packages/Seeeduino/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 Seeeduino: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" | |
| arduino-cli lib install "MIDI Library" | |
| # 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 | |
| # rm -r $HOME/Arduino/libraries/SdFat* | |
| # rm -r $HOME/Arduino/libraries/Adafruit_SPIFlash* | |
| rm -rf /home/runner/work/Adafruit_nRF52_Arduino/Adafruit_nRF52_Arduino/libraries/SdFat | |
| # Library summary | |
| arduino-cli lib list | |
| - name: Build examples | |
| run: python3 tools/build_all.py ${{ matrix.arduino-platform }} |