Skip to content

chore: update to node 10, set trusty distribution #221

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 31, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ matrix:
- stage: "Lint"
language: node_js
os: linux
node_js: "8"
node_js: "10"
script: cd src && npm run ci.tslint && cd ../demo && npm run ci.tslint && cd ../demo-angular && npm run ci.tslint
- stage: "WebPack, Build and Test"
os: osx
env:
- WebPack="iOS"
osx_image: xcode10.0
language: node_js
node_js: "8"
node_js: "10"
jdk: oraclejdk8
script:
- cd demo && npm run build.plugin && npm i && tns build ios --bundle --env.uglify
Expand All @@ -27,10 +27,11 @@ matrix:
- tns build ios --bundle --env.uglify --env.aot
- language: android
os: linux
dist: trusty
env:
- WebPack="Android"
jdk: oraclejdk8
before_install: nvm install 8.11.4
before_install: nvm install 10
script:
- cd demo && npm run build.plugin && npm i && tns build android --bundle --env.uglify --env.snapshot
- cd ../publish
Expand All @@ -41,11 +42,12 @@ matrix:
- npm i
- tns build android --bundle --env.uglify --env.aot
- language: android
os: linux
dist: trusty
env:
- BuildAndroid="28"
os: linux
jdk: oraclejdk8
before_install: nvm install 8.11.4
before_install: nvm install 10
script:
- cd src && npm i && npm run tsc && cd ../demo && npm i && tns build android && cd ../demo-angular && npm i && tns build android
- os: osx
Expand All @@ -54,7 +56,7 @@ matrix:
- Xcode="10.0"
osx_image: xcode10.0
language: node_js
node_js: "8"
node_js: "10"
jdk: oraclejdk8
script:
- cd src && npm i && npm run tsc && cd ../demo && npm i && tns build ios && cd ../demo-angular && npm i && tns build ios
Expand Down