-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #8 from adafruit/actionci
Actionci
- Loading branch information
Showing
4 changed files
with
76 additions
and
44 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
name: Arduino Library CI | ||
|
||
on: [pull_request, push] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
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: install other libraries | ||
run: | | ||
wget https://cdn-learn.adafruit.com/assets/assets/000/046/217/original/MMA8653.zip | ||
unzip MMA8653.zip | ||
mv MMA8653 /home/runner/Arduino/libraries | ||
- name: test platforms | ||
run: python3 ci/build_platform.py microbit | ||
|
||
- name: clang | ||
run: python3 ci/run-clang-format.py -e "ci/*" -e "bin/*" -r . | ||
|
||
- name: doxygen | ||
env: | ||
GH_REPO_TOKEN: ${{ secrets.GH_REPO_TOKEN }} | ||
PRETTYNAME : "Adafruit micro:bit Library" | ||
run: bash ci/doxy_gen_and_deploy.sh |
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 |
---|---|---|
@@ -1,9 +1,10 @@ | ||
name=Adafruit microbit Library | ||
version=1.1.0 | ||
version=1.2.0 | ||
author=Adafruit | ||
maintainer=Adafruit <info@adafruit.com> | ||
sentence=Arduino library for using micro:bit nRF51 | ||
paragraph=Now you can use the micro:bit board with Arduino IDE - and this library will give you an interface to the LED matrix and BTLE for use with the Adafruit Bluefruit Connect app | ||
category=Device Control | ||
url=https://github.com/adafruit/Adafruit_Microbit | ||
architectures=* | ||
depends=Adafruit GFX Library, SparkFun MAG3110 Magnetometer Breakout Arduino Library, STM32duino LSM303AGR, BLEPeripheral |