TeaWeb/.travis.yml

58 lines
1.4 KiB
YAML

dist: trusty
language: node_js
node_js:
- "12"
services:
- docker
before_install:
# If ever run on windows make sure you don't run this in the git bash!
- docker run -dit --name emscripten -v "$(pwd)":"/src/" trzeci/emscripten:sdk-incoming-64bit bash
- chmod +x ./scripts/travis/build.sh
- chmod +x ./scripts/travis/deploy_dev_server.sh
- chmod +x ./scripts/travis/deploy_github.sh
- chmod +x ./scripts/travis/deploy_docker.sh
stages:
- compile
# - test We've no tested defined yet
jobs:
include:
- stage: compile
script: "./scripts/travis/build.sh --enable-release --enable-debug || travis_terminate 1;"
deploy:
- provider: script
script: "bash scripts/travis/deploy_server.sh development"
cleanup: false
skip_cleanup: true
on:
branch: develop
- provider: script
script: "bash scripts/travis/deploy_server.sh production"
cleanup: false
skip_cleanup: true
on:
branch: develop
- provider: script
cleanup: false
skip_cleanup: true
script: "bash scripts/travis/deploy_docker.sh development"
on:
branch: develop
- provider: script
cleanup: false
skip_cleanup: true
script: "bash scripts/travis/deploy_github.sh"
on:
branch: master
- provider: script
cleanup: false
skip_cleanup: true
script: "bash scripts/travis/deploy_docker.sh release"
on:
branch: master