Skip to content

Commit 8d16108

Browse files
committed
Keep only needed changes
1 parent 8557533 commit 8d16108

File tree

4 files changed

+1
-8
lines changed

4 files changed

+1
-8
lines changed

.evergreen.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11023,8 +11023,6 @@ tasks:
1102311023
mongosh_test_force_api_strict: "1"
1102411024
- name: compile_artifact
1102511025
tags: ["compile-artifact"]
11026-
vars:
11027-
distro_id: ${distro_id}
1102811026
depends_on:
1102911027
- name: compile_ts
1103011028
variant: linux_unit
@@ -11036,7 +11034,6 @@ tasks:
1103611034
- func: compile_artifact
1103711035
vars:
1103811036
node_js_version: "20.18.0"
11039-
distro_id: ${distro_id}
1104011037
- func: upload_compiled_artifact
1104111038
vars:
1104211039
node_js_version: "20.18.0"

.evergreen/compile-artifact.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ trap "rm -rf /tmp/m" EXIT
2222
export TMP=/tmp/m
2323
export TMPDIR=/tmp/m
2424

25-
if [ $(uname) = Darwin ]; then
25+
if [ `uname` = Darwin ]; then
2626
# match what Node.js 20 does on their own builder machines
2727
export CFLAGS='-mmacosx-version-min=10.15'
2828
export CXXFLAGS='-mmacosx-version-min=10.15'

.evergreen/evergreen.yml.in

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,8 +1171,6 @@ tasks:
11711171
mongosh_test_force_api_strict: "1"
11721172
- name: compile_artifact
11731173
tags: ["compile-artifact"]
1174-
vars:
1175-
distro_id: ${distro_id}
11761174
depends_on:
11771175
- name: compile_ts
11781176
variant: linux_unit
@@ -1184,7 +1182,6 @@ tasks:
11841182
- func: compile_artifact
11851183
vars:
11861184
node_js_version: "<% out(NODE_JS_VERSION_20) %>"
1187-
distro_id: ${distro_id}
11881185
- func: upload_compiled_artifact
11891186
vars:
11901187
node_js_version: "<% out(NODE_JS_VERSION_20) %>"

.evergreen/install-npm-deps.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
set -e
22
set -x
33

4-
echo "DISTRO ID: ${DISTRO_ID}"
54
if [[ "${DISTRO_ID}" =~ ^(rhel) ]]; then
65
# force because of issues with peer deps and semver pre-releases,
76
# install rather than ci because `npm ci` can only install packages when your

0 commit comments

Comments
 (0)