Skip to content

Commit 920ee91

Browse files
committed
remove node 12 from tests
1 parent 39fe657 commit 920ee91

2 files changed

Lines changed: 74 additions & 0 deletions

File tree

.travis.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
---
2+
language: node_js
3+
node_js:
4+
- "10"
5+
6+
branches:
7+
only:
8+
- master
9+
- beta
10+
- /^greenkeeper.*$/
11+
12+
env:
13+
- CXX=g++-4.8 WORKER_COUNT=2
14+
15+
addons:
16+
apt:
17+
sources:
18+
- ubuntu-toolchain-r-test
19+
packages:
20+
- g++-4.8
21+
chrome: stable
22+
23+
cache:
24+
directories:
25+
- $HOME/.npm
26+
yarn: false # switch to yarn once ember-cli-addon-tests is removed
27+
28+
before_install:
29+
- npm config set spin false
30+
- npm install -g npm@4
31+
- cd packages/ember-cli-fastboot
32+
33+
install:
34+
- npm install
35+
- yarn --ignore-engines

appveyor.yml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
# https://www.appveyor.com/docs/appveyor-yml/
2+
3+
# Test against these versions of Node.js.
4+
environment:
5+
MOCHA_REPORTER: "mocha-appveyor-reporter"
6+
matrix:
7+
- nodejs_version: "10"
8+
9+
branches:
10+
only:
11+
- master
12+
- beta
13+
- /^greenkeeper.*$/
14+
15+
# Install scripts. (runs after repo cloning)
16+
install:
17+
- ps: Install-Product node $env:nodejs_version
18+
- npm config set spin false
19+
- cd packages/ember-cli-fastboot
20+
- appveyor-retry npm install -g npm@^3
21+
- appveyor-retry npm i -g bower # for ember-cli-addon-tests
22+
- npm --version
23+
- appveyor-retry choco install phantomjs
24+
- appveyor-retry yarn --ignore-engines
25+
- appveyor-retry yarn add mocha-appveyor-reporter --ignore-engines # must be installed locally.
26+
27+
28+
# Post-install test scripts.
29+
test_script:
30+
# Output useful info for debugging.
31+
- git rev-parse HEAD
32+
# switch to yarn once ember-cli-addon-tests are removed
33+
- cmd: npm test
34+
35+
# Don't actually build.
36+
build: off
37+
38+
# Set build version format here instead of in the admin panel.
39+
version: "{build}"

0 commit comments

Comments
 (0)