-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy path.travis.yml
60 lines (46 loc) · 1.26 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
branches:
only:
- master
- /^v?\d+\.\d+(\.\d+)?(-\S*)?$/
os: linux
dist: trusty
language: bash
sudo: false
cache:
directories:
- ~/arduino_ide
# - ~/.arduino15/packages/
before_cache:
- rm -rf ~/arduino_ide/hardware/esp8266com
- rm -rf ~/arduino_ide/hardware/espressif
git:
depth: false
quiet: true
env:
global:
- PRETTYNAME="WiFi Connect"
- DOXYPRJBRIEF="WiFi connection manager for ESP32 and ESP8266 including OLED support"
- DOXYPRJVERSION="Version 1.0"
- DOXYPRJLOGO="extras\/WiFiConnect.png"
# Optional, will default to "$TRAVIS_BUILD_DIR/Doxyfile"
# - DOXYFILE: $TRAVIS_BUILD_DIR/Doxyfile
matrix:
include:
- env:
- BUILD_TYPE=build_esp8266
- BUILDDOXYGEN=false
- env:
- BUILD_TYPE=build_esp32
- BUILDDOXYGEN=true
before_install:
install:
script:
- $TRAVIS_BUILD_DIR/travis/common.sh
# Generate and deploy documentation
after_success:
# - source <(curl -SLs https://raw.githubusercontent.com/smurf0969/travis-ci-arduino/master/library_check.sh)
- source <(curl -SLs https://raw.githubusercontent.com/smurf0969/.github/master/doxygen/doxy_gen_and_deploy.sh)
notifications:
email:
on_success: change # default: change
on_failure: always # default: always