Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,6 @@ functions:
- 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:
Expand All @@ -25,7 +14,7 @@ functions:
set -e
set -x

. .evergreen/use-node.sh
export PATH=/opt/devtools/node16/bin:$PATH
npm ci
check:
- command: shell.exec
Expand All @@ -36,7 +25,7 @@ functions:
set -e
set -x

. .evergreen/use-node.sh
export PATH=/opt/devtools/node16/bin:$PATH
npm run compile
npm run check
test:
Expand All @@ -60,7 +49,7 @@ functions:
# just keeps timing out.
if echo "${distro_id}" | grep -q ubuntu; then export SKIP_REGULAR_BROWSER_TESTING=true; fi

. .evergreen/use-node.sh
export PATH=/opt/devtools/node16/bin:$PATH
npm run test-ci
test_electron:
- command: shell.exec
Expand All @@ -77,26 +66,23 @@ functions:
set -e
set -x

. .evergreen/use-node.sh
export PATH=/opt/devtools/node16/bin:$PATH
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

Expand Down
33 changes: 0 additions & 33 deletions .evergreen/install-node.sh

This file was deleted.

8 changes: 0 additions & 8 deletions .evergreen/use-node.sh

This file was deleted.

Loading