File tree Expand file tree Collapse file tree 3 files changed +4
-59
lines changed Expand file tree Collapse file tree 3 files changed +4
-59
lines changed Original file line number Diff line number Diff line change @@ -5,17 +5,6 @@ functions:
5
5
- command : git.get_project
6
6
params :
7
7
directory : src
8
- install_node :
9
- - command : shell.exec
10
- params :
11
- working_dir : src
12
- shell : bash
13
- script : |
14
- set -e
15
- set -x
16
-
17
- export NODE_VERSION=16.19.0
18
- bash .evergreen/install-node.sh
19
8
install :
20
9
- command : shell.exec
21
10
params :
@@ -25,7 +14,7 @@ functions:
25
14
set -e
26
15
set -x
27
16
28
- . .evergreen/use-node.sh
17
+ export PATH=/opt/devtools/node16/bin:$PATH
29
18
npm ci
30
19
check :
31
20
- command : shell.exec
@@ -36,7 +25,7 @@ functions:
36
25
set -e
37
26
set -x
38
27
39
- . .evergreen/use-node.sh
28
+ export PATH=/opt/devtools/node16/bin:$PATH
40
29
npm run compile
41
30
npm run check
42
31
test :
@@ -60,7 +49,7 @@ functions:
60
49
# just keeps timing out.
61
50
if echo "${distro_id}" | grep -q ubuntu; then export SKIP_REGULAR_BROWSER_TESTING=true; fi
62
51
63
- . .evergreen/use-node.sh
52
+ export PATH=/opt/devtools/node16/bin:$PATH
64
53
npm run test-ci
65
54
test_electron :
66
55
- command : shell.exec
@@ -77,26 +66,23 @@ functions:
77
66
set -e
78
67
set -x
79
68
80
- . .evergreen/use-node.sh
69
+ export PATH=/opt/devtools/node16/bin:$PATH
81
70
npm run test-electron
82
71
83
72
tasks :
84
73
- name : test
85
74
commands :
86
75
- func : checkout
87
- - func : install_node
88
76
- func : install
89
77
- func : test
90
78
- name : test_electron
91
79
commands :
92
80
- func : checkout
93
- - func : install_node
94
81
- func : install
95
82
- func : test_electron
96
83
- name : check
97
84
commands :
98
85
- func : checkout
99
- - func : install_node
100
86
- func : install
101
87
- func : check
102
88
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments