-
Notifications
You must be signed in to change notification settings - Fork 224
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Moved repository to actions"
This reverts commit 2d9bd91.
- Loading branch information
dherrada
committed
May 29, 2020
1 parent
2d9bd91
commit 30bd5b1
Showing
6 changed files
with
223 additions
and
235 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
language: c | ||
sudo: false | ||
# Blacklist | ||
branches: | ||
except: | ||
- gh-pages | ||
cache: | ||
directories: | ||
- ~/arduino_ide | ||
- ~/.arduino15/packages/ | ||
git: | ||
depth: false | ||
quiet: true | ||
env: | ||
global: | ||
- PRETTYNAME="Adafruit PCD8544 Nokia 5110 LCD library" | ||
# Optional, will default to "$TRAVIS_BUILD_DIR/Doxyfile" | ||
# - DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile | ||
|
||
before_install: | ||
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/install.sh) | ||
|
||
install: | ||
- arduino --install-library "Adafruit GFX Library" | ||
|
||
script: | ||
- build_main_platforms | ||
|
||
# Generate and deploy documentation | ||
after_success: | ||
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/library_check.sh) | ||
- source <(curl -SLs https://raw.githubusercontent.com/adafruit/travis-ci-arduino/master/doxy_gen_and_deploy.sh) |
Oops, something went wrong.