Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
f19f9afb6e | ||
|
|
adefa6684f | ||
|
|
fa0777372d | ||
|
|
730e7c3122 | ||
|
|
07ced7149f | ||
|
|
26054f14bc | ||
|
|
a8f54fe5f7 | ||
|
|
f957559192 |
2 changed files with 26 additions and 2 deletions
26
.github/workflows/githubci.yml
vendored
26
.github/workflows/githubci.yml
vendored
|
|
@ -4,6 +4,13 @@ on: [pull_request, push]
|
|||
|
||||
jobs:
|
||||
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
|
||||
|
||||
steps:
|
||||
|
|
@ -20,7 +27,24 @@ jobs:
|
|||
run: bash ci/actions_install.sh
|
||||
|
||||
- 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
|
||||
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r .
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
# Adafruit_ImageReader 
|
||||
|
||||
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.
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue