-
Notifications
You must be signed in to change notification settings - Fork 126
/
.travis.yml
89 lines (83 loc) · 2.05 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
language: node_js
node_js:
- node
matrix:
include:
#
# Build using whatever is default on all platforms:
#
# https://docs.travis-ci.com/user/reference/linux/
# https://docs.travis-ci.com/user/reference/osx/
# https://docs.travis-ci.com/user/reference/windows/
#
# except on precise where 10 is the latest that will run (newer require
# a more modern glibc).
#
- name: 'Ubuntu 20.04 - Node.js LTS'
os: linux
dist: focal
- name: 'Ubuntu 18.04 - Node.js LTS'
os: linux
dist: bionic
- name: 'Ubuntu 16.04 - Node.js LTS'
os: linux
dist: xenial
- name: 'Ubuntu 14.04 - Node.js LTS'
os: linux
dist: trusty
- name: 'Ubuntu 12.04 - Node.js 10'
os: linux
dist: precise
node_js: "10"
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8
- name: 'Ubuntu ARM64 - Node.js LTS'
os: linux
arch: arm64
#
# Don't build on all available macOS platforms, just newest and oldest.
#
- name: 'macOS 10.14 / Xcode 11.3 - Node.js LTS'
os: osx
osx_image: xcode11.3
- name: 'macOS 10.11 / Xcode 7.3 - Node.js LTS'
os: osx
osx_image: xcode7.3
- name: 'Windows Server 1803 - Node.js LTS'
os: windows
#
# Test latest node and historical LTS releases on Linux/amd64 only.
#
#- name: 'Ubuntu - Node.js 15'
# os: linux
# node_js: "15"
- name: 'Ubuntu - Node.js 14'
os: linux
node_js: "14"
- name: 'Ubuntu - Node.js 12'
os: linux
node_js: "12"
- name: 'Ubuntu - Node.js 10'
os: linux
node_js: "10"
- name: 'Ubuntu - Node.js 8'
os: linux
node_js: "8"
- name: 'Ubuntu - Node.js 6'
os: linux
node_js: "6"
- name: 'Ubuntu - Node.js 4'
os: linux
node_js: "4"
- name: 'Ubuntu - Node.js 0.12'
os: linux
node_js: "0.12"
- name: 'Ubuntu - Node.js 0.10'
os: linux
node_js: "0.10"