2019-05-20 18:09:49 +00:00
|
|
|
dist: trusty
|
|
|
|
|
2020-04-02 22:06:58 +00:00
|
|
|
language: node_js
|
|
|
|
node_js:
|
|
|
|
- "12"
|
|
|
|
|
2019-05-20 18:09:49 +00:00
|
|
|
services:
|
|
|
|
- docker
|
|
|
|
|
|
|
|
before_install:
|
2020-04-02 22:06:58 +00:00
|
|
|
# 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
|
2020-05-03 19:01:30 +00:00
|
|
|
- chmod +x ./scripts/travis/build.sh
|
|
|
|
- chmod +x ./scripts/travis/deploy_dev_server.sh
|
|
|
|
- chmod +x ./scripts/travis/deploy_github.sh
|
2020-05-03 20:02:18 +00:00
|
|
|
- chmod +x ./scripts/travis/deploy_docker.sh
|
2019-05-20 18:09:49 +00:00
|
|
|
|
2020-04-09 15:36:12 +00:00
|
|
|
stages:
|
|
|
|
- compile
|
|
|
|
# - test We've no tested defined yet
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
include:
|
|
|
|
- stage: compile
|
2020-05-03 19:01:30 +00:00
|
|
|
script: "./scripts/travis/build.sh --enable-release --enable-debug || travis_terminate 1;"
|
2020-04-09 15:51:24 +00:00
|
|
|
|
|
|
|
deploy:
|
|
|
|
- provider: script
|
2020-08-05 17:20:40 +00:00
|
|
|
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"
|
2020-04-09 15:58:02 +00:00
|
|
|
cleanup: false
|
2020-04-09 16:04:06 +00:00
|
|
|
skip_cleanup: true
|
2020-04-09 15:51:24 +00:00
|
|
|
on:
|
|
|
|
branch: develop
|
2020-05-03 20:02:18 +00:00
|
|
|
- provider: script
|
|
|
|
cleanup: false
|
|
|
|
skip_cleanup: true
|
|
|
|
script: "bash scripts/travis/deploy_docker.sh development"
|
|
|
|
on:
|
|
|
|
branch: develop
|
|
|
|
|
2020-04-09 15:51:24 +00:00
|
|
|
- provider: script
|
2020-04-09 15:58:02 +00:00
|
|
|
cleanup: false
|
2020-04-09 16:04:06 +00:00
|
|
|
skip_cleanup: true
|
2020-05-03 19:01:30 +00:00
|
|
|
script: "bash scripts/travis/deploy_github.sh"
|
2020-05-03 20:02:18 +00:00
|
|
|
on:
|
|
|
|
branch: master
|
|
|
|
- provider: script
|
|
|
|
cleanup: false
|
|
|
|
skip_cleanup: true
|
|
|
|
script: "bash scripts/travis/deploy_docker.sh release"
|
2020-04-09 15:51:24 +00:00
|
|
|
on:
|
|
|
|
branch: master
|