ESPAsyncWebServer/.travis.yml

47 lines
1.3 KiB
YAML
Raw Permalink Normal View History

2016-02-01 08:00:53 -08:00
sudo: false
language: python
2016-02-01 08:00:53 -08:00
os:
- linux
git:
depth: false
stages:
- build
jobs:
include:
- name: "Build Arduino ESP32"
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
stage: build
2019-10-02 00:32:15 -07:00
script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp32
- name: "Build Arduino ESP8266"
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
stage: build
2019-10-02 00:32:15 -07:00
script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp8266
2016-02-01 08:00:53 -08:00
2019-09-21 01:46:53 -07:00
- name: "Build Platformio ESP32"
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
stage: build
2019-10-02 00:32:15 -07:00
script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp32 1 1
2019-09-21 01:46:53 -07:00
- name: "Build Platformio ESP8266"
if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
stage: build
2019-10-02 00:32:15 -07:00
script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp8266 1 1
2019-09-21 01:46:53 -07:00
2016-02-01 08:00:53 -08:00
notifications:
email:
on_success: change
on_failure: change
webhooks:
urls:
- https://webhooks.gitter.im/e/60e65d0c78ea0a920347
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always