forked from vmware-archive/vcd-ext-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.travis.yml
More file actions
31 lines (31 loc) · 677 Bytes
/
.travis.yml
File metadata and controls
31 lines (31 loc) · 677 Bytes
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
dist: trusty
matrix:
include:
- language: java
jdk:
- oraclejdk8
before_install:
- cd java
script:
- mvn install -B -V
deploy:
provider: script
skip_cleanup: true
script: cd $TRAVIS_BUILD_DIR && bash build-resources/travis-release.sh
on:
tags: true
branch: master
- language: node_js
node_js:
- "lts/*"
before_install:
- cd typescript/api-client
script:
- npm run build
deploy:
provider: script
skip_cleanup: true
script: npm run deploy
on:
tags: true
branch: master