-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: introduce CI to standardize inspection
- Loading branch information
Showing
2 changed files
with
47 additions
and
0 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,5 @@ | ||
#!/bin/bash | ||
cd ${HOME}/Arduino/libraries | ||
git clone https://github.com/me-no-dev/ESPAsyncWebServer.git ESPAsyncWebServer | ||
git clone https://github.com/me-no-dev/ESPAsyncTCP.git ESPAsyncTCP | ||
git clone https://github.com/me-no-dev/AsyncTCP.git AsyncTCP |
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,42 @@ | ||
name: Arduino Library CI | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**/**.md' | ||
- '/keywords.txt' | ||
- '/library.json' | ||
- '/library.properties' | ||
- '/frontend' | ||
pull_request: | ||
paths-ignore: | ||
- '**/**.md' | ||
- '/keywords.txt' | ||
- '/library.json' | ||
- '/library.properties' | ||
- '/frontend' | ||
|
||
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-deps | ||
run: bash .github/scripts/dep-install.sh | ||
|
||
- name: test platforms | ||
run: python3 ci/build_platform.py esp8266 esp32 |