-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
42 lines (40 loc) · 1.02 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
matrix:
include:
- language: minimal
jdk: oraclejdk12
before_install: cd front
script:
- nvm i && nvm use
- npm i -g npm
- npm ci
- npm run build
deploy:
provider: script
skip_cleanup: true
script: cd "$TRAVIS_BUILD_DIR"; bash travis/deploy.sh clojure
on:
branch: master
- language: rust
rust: nightly
before_install: cd backend
script: cargo build --release
deploy:
provider: script
skip_cleanup: true
script: cd "$TRAVIS_BUILD_DIR"; bash ./travis/deploy.sh rust
on:
branch: master
- language: node_js
node_js: 11
cache:
directories:
- $TRAVIS_BUILD_DIR/front-elm/node_modules
before_install: cd front-elm
install: npm install
script: npm run make
deploy:
provider: script
skip_cleanup: true
script: cd "$TRAVIS_BUILD_DIR"; bash travis/deploy.sh elm
on:
branch: master