Skip to content

Commit

Permalink
Keep only needed changes
Browse files Browse the repository at this point in the history
  • Loading branch information
gagik committed Oct 22, 2024
1 parent 8557533 commit 8d16108
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 8 deletions.
3 changes: 0 additions & 3 deletions .evergreen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11023,8 +11023,6 @@ tasks:
mongosh_test_force_api_strict: "1"
- name: compile_artifact
tags: ["compile-artifact"]
vars:
distro_id: ${distro_id}
depends_on:
- name: compile_ts
variant: linux_unit
Expand All @@ -11036,7 +11034,6 @@ tasks:
- func: compile_artifact
vars:
node_js_version: "20.18.0"
distro_id: ${distro_id}
- func: upload_compiled_artifact
vars:
node_js_version: "20.18.0"
Expand Down
2 changes: 1 addition & 1 deletion .evergreen/compile-artifact.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ trap "rm -rf /tmp/m" EXIT
export TMP=/tmp/m
export TMPDIR=/tmp/m

if [ $(uname) = Darwin ]; then
if [ `uname` = Darwin ]; then
# match what Node.js 20 does on their own builder machines
export CFLAGS='-mmacosx-version-min=10.15'
export CXXFLAGS='-mmacosx-version-min=10.15'
Expand Down
3 changes: 0 additions & 3 deletions .evergreen/evergreen.yml.in
Original file line number Diff line number Diff line change
Expand Up @@ -1171,8 +1171,6 @@ tasks:
mongosh_test_force_api_strict: "1"
- name: compile_artifact
tags: ["compile-artifact"]
vars:
distro_id: ${distro_id}
depends_on:
- name: compile_ts
variant: linux_unit
Expand All @@ -1184,7 +1182,6 @@ tasks:
- func: compile_artifact
vars:
node_js_version: "<% out(NODE_JS_VERSION_20) %>"
distro_id: ${distro_id}
- func: upload_compiled_artifact
vars:
node_js_version: "<% out(NODE_JS_VERSION_20) %>"
Expand Down
1 change: 0 additions & 1 deletion .evergreen/install-npm-deps.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
set -e
set -x

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

0 comments on commit 8d16108

Please sign in to comment.