Skip to content
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

Travis-ci: added support for ppc64le & Removed unsupported versions for ppc64le #53

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
44 changes: 44 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,50 @@ jobs:
node_js: lts/*
script: npm run test:browsers:with-polyfills
addons: *AIRTAP
#Added power jobs
- name: Run tests on stable Node.js
arch: ppc64le
node_js: stable
script: npm test
- name: Run tests on Node.js 12
arch: ppc64le
node_js: 12
script: npm test
- name: Run tests on Node.js 10
arch: ppc64le
node_js: 10
script: npm test
- name: Run tests on Node.js 8
arch: ppc64le
node_js: 8
script: npm test
- name: Run tests on Node.js 6
arch: ppc64le
node_js: 6
script: npm test
- name: Run tests on Node.js 4
arch: ppc64le
node_js: 4
script: npm test
- name: Run browser tests
arch: ppc64le
node_js: lts/*
script: npm run test:browsers
addons: *AIRTAP
- name: Run browser tests with polyfilled environment
arch: ppc64le
node_js: lts/*
script: npm run test:browsers:with-polyfills
addons: *AIRTAP
exclude:
- name: Run tests on Node.js 0.12
arch: ppc64le
node_js: '0.12'
script: npm test
- name: Run tests on Node.js 0.10
arch: ppc64le
node_js: '0.10'
script: npm test

env:
global:
Expand Down