mirror of
https://github.com/SMFSW/cI2C
synced 2024-11-21 17:34:21 +01:00
26 lines
698 B
YAML
Executable File
26 lines
698 B
YAML
Executable File
language: c
|
|
sudo: false
|
|
|
|
# Blacklist
|
|
branches:
|
|
except:
|
|
- gh-pages
|
|
|
|
env:
|
|
global:
|
|
- PRETTYNAME="cI2C: Arduino Hardware I2C for AVR (in plain c)"
|
|
- GH_REPO_NAME: cI2C
|
|
# - GH_REPO_REF: github.com/SMFSW/cI2C.git
|
|
# - DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile
|
|
|
|
before_install:
|
|
- source <(curl -SLs https://raw.githubusercontent.com/SMFSW/travis-ci-arduino/master/install.sh)
|
|
|
|
script:
|
|
- build_avr_platforms
|
|
|
|
# Generate and deploy documentation
|
|
after_success:
|
|
- source <(curl -SLs https://raw.githubusercontent.com/SMFSW/travis-ci-arduino/master/library_check.sh)
|
|
- source <(curl -SLs https://raw.githubusercontent.com/SMFSW/travis-ci-arduino/master/doxy_gen_and_deploy.sh)
|