Skip to content

Commit 513e8bd

Browse files
committed
chore: pass env explicitly?
1 parent 9def5bb commit 513e8bd

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.evergreen.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4111,7 +4111,8 @@ functions:
41114111
script: |
41124112
set -e
41134113
{
4114-
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION=${NODE_JS_VERSION} -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
4114+
echo "Using Node.js version: ${NODE_JS_VERSION}"
4115+
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
41154116
docker run \
41164117
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
41174118
-c 'cd /tmp/build && ./testing/test-vscode.sh'

.evergreen/evergreen.yml.in

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,8 @@ functions:
330330
script: |
331331
set -e
332332
{
333-
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION=${NODE_JS_VERSION} -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
333+
echo "Using Node.js version: ${NODE_JS_VERSION}"
334+
(cd scripts/docker && docker build --build-arg NODE_JS_VERSION="${NODE_JS_VERSION}" -t ubuntu24.04-xvfb -f ubuntu24.04-xvfb.Dockerfile .)
334335
docker run \
335336
--rm -v $PWD:/tmp/build ubuntu24.04-xvfb \
336337
-c 'cd /tmp/build && ./testing/test-vscode.sh'

0 commit comments

Comments
 (0)