@@ -10,9 +10,6 @@ executors:
10
10
linux-python :
11
11
docker :
12
12
- image : cimg/python:3.10.7
13
- environment :
14
- # Currently pinned due to https://github.com/emscripten-core/emscripten/issues/17846
15
- V8_VERSION : " 10.7.186"
16
13
bionic :
17
14
docker :
18
15
- image : emscripten/emscripten-ci
@@ -23,8 +20,6 @@ executors:
23
20
EMTEST_WASI_SYSROOT : " ~/wasi-sdk/wasi-sysroot"
24
21
EMTEST_BUILD_VERBOSE : " 2"
25
22
EMTEST_DETECT_TEMPFILE_LEAKS : " 1"
26
- # Currently pinned due to https://github.com/emscripten-core/emscripten/issues/17846
27
- V8_VERSION : " 10.7.186"
28
23
mac :
29
24
environment :
30
25
EMSDK_NOTTY : " 1"
@@ -120,7 +115,7 @@ commands:
120
115
tar -xf node-v15.14.0-linux-x64.tar.xz
121
116
export PATH="`pwd`/node-v15.14.0-linux-x64/bin:${PATH}"
122
117
npm install jsvu -g
123
- jsvu --os=default --engines=v8 v8@${V8_VERSION}
118
+ jsvu --os=default --engines=v8
124
119
build :
125
120
description : " Install emsdk"
126
121
steps :
@@ -143,7 +138,7 @@ commands:
143
138
# persisted workspace (see below).
144
139
echo "CACHE = os.path.expanduser('~/cache')" >> .emscripten
145
140
# Refer to commit 0bc3640 if we need to pin V8 version.
146
- echo "V8_ENGINE = [os.path.expanduser('~/.jsvu/bin/v8-${V8_VERSION} ')]" >> .emscripten
141
+ echo "V8_ENGINE = [os.path.expanduser('~/.jsvu/bin/v8')]" >> .emscripten
147
142
echo "JS_ENGINES = [NODE_JS]" >> .emscripten
148
143
echo "if os.path.exists(V8_ENGINE[0]): JS_ENGINES.append(V8_ENGINE)" >> .emscripten
149
144
echo "WASM_ENGINES = []" >> .emscripten
@@ -726,7 +721,7 @@ jobs:
726
721
- run :
727
722
name : Remove Linux binaries
728
723
command : |
729
- rm -rf ~/emsdk ~/vms
724
+ rm -rf ~/emsdk ~/vms ~/.jsvu
730
725
- build
731
726
# note we do *not* build all libraries and freeze the cache; as we run
732
727
# only limited tests here, it's more efficient to build on demand
0 commit comments