-
Notifications
You must be signed in to change notification settings - Fork 167
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Bump Sync to 3.10.1 * Try to disable the sync win32 build * Update ROS for tests * Try to enable the ROS tests * Update to latest OS, sync, and Core * Update new core linux location * Bring back the windows builds on CI * Remove the withROS_temp * Changelog * Remove some .def files * Try to set nuget environment variable * Try #2 * Try #3 * Try #4 * #5 * #6 * Report the node * Upgrade to 3.14.11 * Use the well-known sync binary location * Try to fix the tests * Fix the changelog * Update CHANGELOG.md Co-Authored-By: nirinchev <[email protected]> * Update CHANGELOG.md Co-Authored-By: nirinchev <[email protected]> * Update CHANGELOG.md Co-Authored-By: nirinchev <[email protected]> * Changelog updates
- Loading branch information
Showing
15 changed files
with
76 additions
and
290 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 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
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 |
---|---|---|
|
@@ -98,30 +98,22 @@ elseif(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux") | |
if(EXISTS "${REALM_CORE_BUILDTREE}/realm-config.cmake") | ||
set(core_config_file "${REALM_CORE_BUILDTREE}/realm-config.cmake") | ||
else() | ||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux") | ||
message(STATUS "Downloading realm-core...") | ||
file(DOWNLOAD "http://static.realm.io/downloads/core/realm-core-${REALM_CORE_VERSION}.tgz" "${CMAKE_BINARY_DIR}/realm-core-${REALM_CORE_VERSION}.tgz") | ||
|
||
message(STATUS "Uncompressing realm-core...") | ||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${core_filename}") | ||
execute_process(COMMAND ${CMAKE_COMMAND} -E tar xfz "${CMAKE_BINARY_DIR}/realm-core-${REALM_CORE_VERSION}.tgz" | ||
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}") | ||
|
||
set(core_config_file "${CMAKE_BINARY_DIR}/realm-core-${REALM_CORE_VERSION}/lib64/cmake/realm/realm-config.cmake") | ||
else() | ||
set(core_filename "realm-core-${CMAKE_BUILD_TYPE}-v${REALM_CORE_VERSION}-${platform}-devel") | ||
if(WINDOWS_STORE) | ||
string(REPLACE "WindowsStore" "UWP" core_filename ${core_filename}) | ||
endif() | ||
set(core_filename "realm-core-${CMAKE_BUILD_TYPE}-v${REALM_CORE_VERSION}-${platform}-devel") | ||
if(WINDOWS_STORE) | ||
string(REPLACE "WindowsStore" "UWP" core_filename ${core_filename}) | ||
endif() | ||
|
||
message(STATUS "Downloading realm-core...") | ||
file(DOWNLOAD "http://static.realm.io/downloads/core/${core_filename}.tar.gz" "${CMAKE_BINARY_DIR}/${core_filename}.tar.gz") | ||
message(STATUS "Downloading realm-core...") | ||
file(DOWNLOAD "http://static.realm.io/downloads/core/${core_filename}.tar.gz" "${CMAKE_BINARY_DIR}/${core_filename}.tar.gz") | ||
|
||
message(STATUS "Uncompressing realm-core...") | ||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${core_filename}") | ||
execute_process(COMMAND ${CMAKE_COMMAND} -E tar xfz "${CMAKE_BINARY_DIR}/${core_filename}.tar.gz" | ||
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/${core_filename}") | ||
message(STATUS "Uncompressing realm-core...") | ||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${core_filename}") | ||
execute_process(COMMAND ${CMAKE_COMMAND} -E tar xfz "${CMAKE_BINARY_DIR}/${core_filename}.tar.gz" | ||
WORKING_DIRECTORY "${CMAKE_BINARY_DIR}/${core_filename}") | ||
|
||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux") | ||
set(core_config_file "${CMAKE_BINARY_DIR}/${core_filename}/lib64/cmake/realm/realm-config.cmake") | ||
else() | ||
set(core_config_file "${CMAKE_BINARY_DIR}/${core_filename}/lib/cmake/realm/realm-config.cmake") | ||
endif() | ||
endif() | ||
|
@@ -145,23 +137,10 @@ elseif(WIN32 OR CMAKE_SYSTEM_NAME STREQUAL "Linux") | |
if(EXISTS "${REALM_SYNC_BUILDTREE}/realm-sync-config.cmake") | ||
include("${REALM_SYNC_BUILDTREE}/realm-sync-config.cmake") | ||
else() | ||
find_package(Git) | ||
execute_process(COMMAND "${GIT_EXECUTABLE}" ls-remote [email protected]:realm/realm-sync.git --tags v${REALM_SYNC_VERSION}^{} | ||
OUTPUT_VARIABLE git_output) | ||
|
||
if (git_output STREQUAL "") | ||
execute_process(COMMAND "${GIT_EXECUTABLE}" ls-remote [email protected]:realm/realm-sync.git --tags v${REALM_SYNC_VERSION} | ||
OUTPUT_VARIABLE git_output) | ||
endif() | ||
|
||
string(REGEX MATCHALL "([^\t]+)" commit_and_ref "${git_output}") | ||
list(GET commit_and_ref 0 sync_commit_sha) | ||
|
||
set(sync_filename "realm-sync-${CMAKE_BUILD_TYPE}-v${REALM_SYNC_VERSION}-${platform}-devel") | ||
set(sync_url "http://static.realm.io/downloads/sync/sha-version/${sync_commit_sha}/${sync_filename}.tar.gz") | ||
|
||
message(STATUS "Downloading realm-sync...") | ||
file(DOWNLOAD "${sync_url}" "${CMAKE_BINARY_DIR}/${sync_filename}.tar.gz") | ||
file(DOWNLOAD "http://static.realm.io/downloads/sync/${sync_filename}.tar.gz" "${CMAKE_BINARY_DIR}/${sync_filename}.tar.gz") | ||
|
||
message(STATUS "Uncompressing realm-sync...") | ||
file(MAKE_DIRECTORY "${CMAKE_BINARY_DIR}/${sync_filename}") | ||
|
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
REALM_CORE_VERSION=5.8.0 | ||
REALM_SYNC_VERSION=3.9.2 | ||
REALM_CORE_VERSION=5.12.7 | ||
REALM_SYNC_VERSION=3.14.11 | ||
ANDROID_OPENSSL_VERSION=1.0.2k |
Oops, something went wrong.