-
Notifications
You must be signed in to change notification settings - Fork 693
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgrade node from v16.20.0 to v18.20.3
Node v18 is that current LTS release of node and v18.20.3 is the latest release of v18. This change means that emsdk is no longer installable on Ubuntu/Bionic 18.04, and we now require Ubuntu/Focal 20.04. See: #1183 Fixes: #1173
- Loading branch information
Showing
3 changed files
with
57 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,9 @@ orbs: | |
win: circleci/[email protected] | ||
|
||
executors: | ||
bionic: | ||
focal: | ||
docker: | ||
- image: buildpack-deps:bionic | ||
- image: buildpack-deps:focal | ||
mac: | ||
environment: | ||
EMSDK_NOTTY: "1" | ||
|
@@ -50,7 +50,7 @@ commands: | |
jobs: | ||
flake8: | ||
executor: bionic | ||
executor: focal | ||
steps: | ||
- checkout | ||
- run: | ||
|
@@ -65,14 +65,9 @@ jobs: | |
- run: python2 -m flake8 --show-source --statistics --extend-exclude=./scripts | ||
- run: python3 -m flake8 --show-source --statistics | ||
test-linux: | ||
executor: bionic | ||
executor: focal | ||
environment: | ||
EMSDK_NOTTY: "1" | ||
# This is needed because the old gcc-7 that is installed on debian/bionic | ||
# generates warnings about unused variables when doing C++17 | ||
# destructuring: | ||
# https://github.com/WebAssembly/binaryen/issues/4353 | ||
CXXFLAGS: "-Wno-unused-variable" | ||
# I don't know why circleci VMs pretent to have 36 cores but its a lie. | ||
EMSDK_NUM_CORES: "4" | ||
steps: | ||
|
@@ -174,7 +169,7 @@ jobs: | |
test/test_path_preservation.ps1 | ||
build-docker-image-x64: | ||
executor: bionic | ||
executor: focal | ||
steps: | ||
- checkout | ||
- run: | ||
|
@@ -190,7 +185,7 @@ jobs: | |
command: make -C ./docker version=latest test | ||
|
||
publish-docker-image-x64: | ||
executor: bionic | ||
executor: focal | ||
steps: | ||
- checkout | ||
- run: | ||
|
@@ -226,7 +221,7 @@ jobs: | |
make -C ./docker version=${CIRCLE_TAG} alias=${CIRCLE_TAG}-arm64 only_alias=true push | ||
test-bazel-linux: | ||
executor: bionic | ||
executor: focal | ||
steps: | ||
- checkout | ||
- run: apt-get install -q -y curl gnupg | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters