Compare commits

...

8 commits

Author SHA1 Message Date
Lady Ada
f19f9afb6e bump 2019-12-27 21:53:24 -05:00
Lady Ada
adefa6684f dont failfast 2019-12-27 21:48:37 -05:00
Lady Ada
fa0777372d fix deps for clang/doxy 2019-12-27 21:45:56 -05:00
Lady Ada
730e7c3122 add lots more platforms 2019-12-27 21:44:33 -05:00
Lady Ada
07ced7149f try2 2019-12-27 21:41:43 -05:00
Lady Ada
26054f14bc remove whitespace 2019-12-27 21:38:25 -05:00
Lady Ada
a8f54fe5f7 untab 2019-12-27 21:36:11 -05:00
Lady Ada
f957559192 try a matrix! 2019-12-27 21:33:35 -05:00
2 changed files with 26 additions and 2 deletions

View file

@ -4,6 +4,13 @@ on: [pull_request, push]
jobs: jobs:
build: build:
strategy:
fail-fast: false
matrix:
arduino-platform: ["uno", "leonardo", "mega2560", "esp8266", "esp32",
"zero", "m4", "nrf52840", "pybadge", "hallowing_m4",
"cpb", "cpx_ada", "pyportal"]
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -20,7 +27,24 @@ jobs:
run: bash ci/actions_install.sh run: bash ci/actions_install.sh
- name: test platforms - name: test platforms
run: python3 ci/build_platform.py main_platforms arcada_platforms run: python3 ci/build_platform.py ${{ matrix.arduino-platform }}
clang_and_doxy:
runs-on: ubuntu-latest
needs: build
steps:
- uses: actions/setup-python@v1
with:
python-version: '3.x'
- uses: actions/checkout@v2
- uses: actions/checkout@v2
with:
repository: adafruit/ci-arduino
path: ci
- name: pre-install
run: bash ci/actions_install.sh
- name: clang - name: clang
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r . run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .

View file

@ -1,6 +1,6 @@
# Adafruit_ImageReader ![Build Status](https://github.com/adafruit/Adafruit_ImageReader/workflows/Arduino%20Library%20CI/badge.svg) # Adafruit_ImageReader ![Build Status](https://github.com/adafruit/Adafruit_ImageReader/workflows/Arduino%20Library%20CI/badge.svg)
Companion library for Adafruit_GFX to load images from SD card. Companion library for Adafruit_GFX to load images from SD card or SPI Flash
Requires Adafruit_GFX library and one of the SPI color graphic display libraries, e.g. Adafruit_ILI9341. Requires Adafruit_GFX library and one of the SPI color graphic display libraries, e.g. Adafruit_ILI9341.