能源管控程序
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

47 lines
1.3 KiB

  1. sudo: false
  2. language: python
  3. os:
  4. - linux
  5. git:
  6. depth: false
  7. stages:
  8. - build
  9. jobs:
  10. include:
  11. - name: "Build Arduino ESP32"
  12. if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
  13. stage: build
  14. script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp32
  15. - name: "Build Arduino ESP8266"
  16. if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
  17. stage: build
  18. script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp8266
  19. - name: "Build Platformio ESP32"
  20. if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
  21. stage: build
  22. script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp32 1 1
  23. - name: "Build Platformio ESP8266"
  24. if: tag IS blank AND (type = pull_request OR (type = push AND branch = master))
  25. stage: build
  26. script: bash $TRAVIS_BUILD_DIR/.github/scripts/on-push.sh esp8266 1 1
  27. notifications:
  28. email:
  29. on_success: change
  30. on_failure: change
  31. webhooks:
  32. urls:
  33. - https://webhooks.gitter.im/e/60e65d0c78ea0a920347
  34. on_success: change # options: [always|never|change] default: always
  35. on_failure: always # options: [always|never|change] default: always
  36. on_start: never # options: [always|never|change] default: always