corrects A3 from pin 3 to pin 18(C18), adds A7 as pin 16(C16), update… #14
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
name: Build | |
on: | |
push: | |
branches: '*' | |
pull_request: | |
branches: '*' | |
jobs: | |
compile: | |
strategy: | |
fail-fast: false | |
matrix: | |
variant: | |
- nRF52DK | |
- BluzDK | |
- RedBearLab_nRF51822:version=1_0 | |
- BBCmicrobit | |
- BBCmicrobitV2 | |
- CalliopeMini | |
- CalliopeminiV3 | |
- Generic_nRF51822:chip=xxac | |
- Generic_nRF52832 | |
- Generic_nRF52833 | |
- OSHChip | |
- STCT_nRF52_minidev | |
- PCA1000X:board_variant=pca10000 | |
- PCA1000X:board_variant=pca10001 | |
- PCA1000X:board_variant=nrf6310 | |
- nRF51Dongle:version=1_1_0 | |
- Blend2 | |
- BLENano | |
- BLENano2 | |
- TinyBLE | |
- bluey | |
- hackaBLE | |
- hackaBLE_v2 | |
- Sinobit | |
- DWM1001-DEV | |
- SeeedArchLink | |
- Beacon_PCA20006 | |
- Waveshare_BLE400 | |
- ng_beacon | |
runs-on: ubuntu-latest | |
name: Compile ${{ matrix.variant }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Create blinky sketch to compile | |
run: | | |
mkdir blinky | |
cat > blinky/blinky.ino << EOF | |
void setup() { | |
pinMode(LED_BUILTIN, OUTPUT); | |
} | |
void loop() { | |
digitalWrite(LED_BUILTIN, HIGH); | |
delay(1000); | |
digitalWrite(LED_BUILTIN, LOW); | |
delay(1000); | |
} | |
EOF | |
- uses: arduino/compile-sketches@v1 | |
with: | |
cli-version: latest | |
verbose: true | |
enable-deltas-report: true | |
platforms: | | |
# First we have to install this core so that the tooling is installed | |
- name: "sandeepmistry:nRF5" | |
source-url: "https://sandeepmistry.github.io/arduino-nRF5/package_nRF5_boards_index.json" | |
version: latest | |
# Now, this will overwrite the core source to use the local version | |
- name: "sandeepmistry:nRF5" | |
source-path: . | |
fqbn: "sandeepmistry:nRF5:${{ matrix.variant }}" | |
sketch-paths: blinky |