-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy path.travis.yml
59 lines (52 loc) · 1.27 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
dist : focal
language: node_js
node_js:
- "node"
- "16"
- "14"
# - "13" (odd numbers get deprecated early)
- "12"
# - "11" (lack private class fields)
# - "10"
# - "9" (doesn't have NODE_MODULE_INIT’, AddEnvironmentCleanupHook ); also lacks TLS 1.3
# - "8"
# - "7" (doesn't have Utf8Value with isolate, 12 doesn't have Utf8Value without isolate())
# - "6"
# - "5"
# - "4"
matrix:
include:
- os : windows
before_install:
- choco install python --version 3.10.0
- python -m pip install --upgrade pip
env: PATH=/c/Python310:/c/Python310/Scripts:$PATH
- os : linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-9
- uuid-dev
- python3
- os : mac
#os:
# - windows
# - linux
# - osx
#compiler:
# - gcc
#env:
#if: NOT branch = master
#if: NOT tag =~ ^[0-9]*.[0-9]*.[0-9]*
branches:
only:
- /^[0-9]+\.[0-9]+.[0-9]+/
notifications:
webhooks:
urls:
- https://webhooks.gitter.im/e/8784d70ae92882b8923a
on_success: change # options: [always|never|change] default: always
on_failure: always # options: [always|never|change] default: always
on_start: never # options: [always|never|change] default: always