-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
RCORE-1928 Make dependencies.list a YAML file (#7394)
- Loading branch information
Showing
11 changed files
with
31 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
PACKAGE_NAME: realm-core | ||
VERSION: 14.1.0 | ||
OPENSSL_VERSION: 3.2.0 | ||
ZLIB_VERSION: 1.2.13 | ||
# https://github.com/10gen/baas/commits | ||
# dd016 is 2024 Feb 22 | ||
BAAS_VERSION: dd01629d83b86292af9c59ebe2a28673c2e559cf |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -365,16 +365,16 @@ git config --global url."[email protected]:".insteadOf "https://github.com/" | |
|
||
# If a baas branch or commit version was not provided use the one locked in our dependencies | ||
if [[ -z "${BAAS_VERSION}" ]]; then | ||
dep_file="dependencies.list" | ||
dep_file="dependencies.yml" | ||
test_path1="${BASE_PATH}/../${dep_file}" | ||
test_path2="${BASE_PATH}/${dep_file}" | ||
if [[ -f "${test_path1}" ]]; then | ||
# if this was run locally then check up a directory | ||
get_var_from_file BAAS_VERSION "${test_path1}" | ||
BAAS_VERSION=$(sed -rn 's/^BAAS_VERSION: (.*)/\1/p' < "${test_path1}") | ||
elif [[ -f "${test_path2}" ]]; then | ||
# if this is run from an evergreen remote host | ||
# then the dependencies.list file has been copied over | ||
get_var_from_file BAAS_VERSION "${test_path2}" | ||
# then the dependencies.yml file has been copied over | ||
BAAS_VERSION=$(sed -rn 's/^BAAS_VERSION: (.*)/\1/p' < "${test_path2}") | ||
else | ||
echo "could not find '${test_path1}' or '${test_path2}'" | ||
ls "${BASE_PATH}/.." | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters