-
Notifications
You must be signed in to change notification settings - Fork 0
/
.evergreen.yml
128 lines (119 loc) · 3.01 KB
/
.evergreen.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
exec_timeout_secs: 600
functions:
checkout:
- command: git.get_project
params:
directory: src
install_node:
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -e
set -x
export NODE_VERSION=16.19.0
bash .evergreen/install-node.sh
install:
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -e
set -x
. .evergreen/use-node.sh
npm ci
check:
- command: shell.exec
params:
working_dir: src
shell: bash
script: |
set -e
set -x
. .evergreen/use-node.sh
npm run compile
npm run check
test:
- command: shell.exec
params:
working_dir: src
shell: bash
env:
OKTA_TEST_CONFIG: ${okta_test_config}
OKTA_TEST_CREDENTIALS: ${okta_test_credentials}
AZURE_TEST_CONFIG: ${azure_test_config}
AZURE_TEST_CREDENTIALS: ${azure_test_credentials}
DISTRO_ID: ${distro_id}
script: |
set -e
set -x
# Google Chrome exists on the Ubuntu hosts but is very slow to start,
# so webdriverio times out when trying to start it *but* then later
# never cleans up the spawned chrome process so that the mocha process
# just keeps timing out.
if echo "${distro_id}" | grep -q ubuntu; then export SKIP_REGULAR_BROWSER_TESTING=true; fi
. .evergreen/use-node.sh
npm run test-ci
test_electron:
- command: shell.exec
params:
working_dir: src
shell: bash
env:
OKTA_TEST_CONFIG: ${okta_test_config}
OKTA_TEST_CREDENTIALS: ${okta_test_credentials}
AZURE_TEST_CONFIG: ${azure_test_config}
AZURE_TEST_CREDENTIALS: ${azure_test_credentials}
DISTRO_ID: ${distro_id}
script: |
set -e
set -x
. .evergreen/use-node.sh
npm run test-electron
tasks:
- name: test
commands:
- func: checkout
- func: install_node
- func: install
- func: test
- name: test_electron
commands:
- func: checkout
- func: install_node
- func: install
- func: test_electron
- name: check
commands:
- func: checkout
- func: install_node
- func: install
- func: check
buildvariants:
- name: ubuntu_x64_test
display_name: 'Ubuntu 20.04 x64'
run_on: ubuntu2004-small
tasks:
- test
- test_electron
- check
- name: macos_x64_test
display_name: 'macOS 11.00 x64'
run_on: macos-11-gui
tasks:
- test
- test_electron
- name: macos_arm64_test
display_name: 'macOS 11.00 arm64'
run_on: macos-11-arm64-gui
tasks:
- test
- test_electron
- name: windows_x64_test
display_name: 'Windows x64'
run_on: windows-vsCurrent-small
tasks:
- test
- test_electron