You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Several build tasks still relied on older find-cmake logic. With the
new CMake changes, a more recent CMake version is required. These
tasks and scripts have been updated to use the same logic to find
the same CMake version as is used in the main build tasks.
Copy file name to clipboardExpand all lines: .evergreen/generated_configs/legacy-config.yml
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1719,10 +1719,13 @@ tasks:
1719
1719
script: |-
1720
1720
set -o errexit
1721
1721
# Compile test-awsauth. Disable unnecessary dependencies since test-awsauth is copied to a remote Ubuntu 18.04 ECS cluster for testing, which may not have all dependent libraries.
1722
-
. .evergreen/scripts/find-cmake.sh
1722
+
set -euo pipefail
1723
+
distro_id="${distro_id}" # Needed by find-cmake-latest.sh
# Compile test-awsauth. Disable unnecessary dependencies since test-awsauth is copied to a remote Ubuntu 18.04 ECS cluster for testing, which may not have all dependent libraries.
902
-
. .evergreen/scripts/find-cmake.sh
902
+
set -euo pipefail
903
+
distro_id="${distro_id}" # Needed by find-cmake-latest.sh
0 commit comments