File tree Expand file tree Collapse file tree 4 files changed +1
-8
lines changed
Expand file tree Collapse file tree 4 files changed +1
-8
lines changed Original file line number Diff line number Diff 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"
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ trap "rm -rf /tmp/m" EXIT
2222export TMP=/tmp/m
2323export 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'
Original file line number Diff line number Diff 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) %>"
Original file line number Diff line number Diff line change 11set -e
22set -x
33
4- echo " DISTRO ID: ${DISTRO_ID} "
54if [[ " ${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
You can’t perform that action at this time.
0 commit comments