-
Notifications
You must be signed in to change notification settings - Fork 66
Standardize packaged telemetry dependencies #1537
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
bmehta001
wants to merge
18
commits into
microsoft:main
from
bmehta001:bhamehta/standardize-telemetry-dependencies
Closed
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
3865eb3
Standardize packaged telemetry dependencies
bmehta001 67c1920
CMake: preserve legacy SQLite package targets
bmehta001 c8cecaf
CMake: require the canonical SQLite target
bmehta001 74476d7
CI: expose modern CMake to build steps
bmehta001 c69dda0
Linux: provision the required CMake release
bmehta001 d56f7df
Linux: make build-tool provisioning reliable
bmehta001 29e8a1f
Update minimum CMake version requirement
bmehta001 1a748b6
Android: keep embedding entry point on CMake 4.1
bmehta001 c45b32c
Merge remote-tracking branch 'fork/bhamehta/standardize-telemetry-dep…
bmehta001 98dd4c7
Merge main and target Windows 8.1
bmehta001 37ecd5d
Build: close CMake setup gaps and target Windows 10
bmehta001 8092492
CMake: propagate mbedTLS threading configuration
bmehta001 da737fe
Revert CMake changes
bmehta001 416888a
Rm more
bmehta001 5f0409d
Update setup-buildtools-android.cmd for SDK installation
bmehta001 1fc93da
CMake: link Windows GUID definitions explicitly
bmehta001 aaacff6
Merge remote-tracking branch 'fork/bhamehta/standardize-telemetry-dep…
bmehta001 4d3a49c
CMake: defer fetched curl CA selection to runtime
bmehta001 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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 hidden or 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,29 +1,30 @@ | ||
| @echo off | ||
| pushd "%~dp0" | ||
|
|
||
| REM Users may override the default %ANDROID_SDK_ROOT% location if necessary | ||
|
|
||
| if "%ANDROID_SDK_ROOT%" == "" set "ANDROID_SDK_ROOT=C:\Android\android-sdk" | ||
| if "%ANDROID_NDK_VERSION%" == "" set "ANDROID_NDK_VERSION=27.0.12077973" | ||
| if "%ANDROID_CMAKE_VERSION%" == "" set "ANDROID_CMAKE_VERSION=3.22.1" | ||
| if "%ANDROID_HOME%" == "" set "ANDROID_HOME=%ANDROID_SDK_ROOT%" | ||
| if "%ANDROID_NDK%" == "" set "ANDROID_NDK=%ANDROID_SDK_ROOT%\ndk\%ANDROID_NDK_VERSION%" | ||
| if "%ANDROID_NDK_HOME%" == "" set "ANDROID_NDK_HOME=%ANDROID_NDK%" | ||
| REM Consider using %ANDROID_NDK_ROOT% environment variable | ||
|
|
||
| REM Install Android tools if necessary | ||
| call tools\setup-buildtools-android.cmd | ||
|
|
||
| set "PATH=%ANDROID_SDK_ROOT%\cmake\%ANDROID_CMAKE_VERSION%\bin;%ANDROID_NDK%;%PATH%" | ||
|
|
||
| echo Building SDK | ||
| pushd .\lib\android_build | ||
| call .\gradlew.bat maesdk:assemble app:assemble %* | ||
| popd | ||
|
|
||
| echo Building Tests | ||
| pushd .\lib\android_build | ||
| call .\gradlew.bat maesdk:test %* | ||
| popd | ||
|
|
||
| popd | ||
| @echo off | ||
| pushd "%~dp0" | ||
|
|
||
| REM Users may override the default %ANDROID_SDK_ROOT% location if necessary | ||
|
|
||
| if "%ANDROID_SDK_ROOT%" == "" set "ANDROID_SDK_ROOT=C:\Android\android-sdk" | ||
| if "%ANDROID_NDK_VERSION%" == "" set "ANDROID_NDK_VERSION=27.0.12077973" | ||
| if "%ANDROID_CMAKE_VERSION%" == "" set "ANDROID_CMAKE_VERSION=3.22.1" | ||
| if "%ANDROID_HOME%" == "" set "ANDROID_HOME=%ANDROID_SDK_ROOT%" | ||
| if "%ANDROID_NDK%" == "" set "ANDROID_NDK=%ANDROID_SDK_ROOT%\ndk\%ANDROID_NDK_VERSION%" | ||
| if "%ANDROID_NDK_HOME%" == "" set "ANDROID_NDK_HOME=%ANDROID_NDK%" | ||
| REM Consider using %ANDROID_NDK_ROOT% environment variable | ||
|
|
||
| REM Install Android tools if necessary | ||
| call tools\setup-buildtools-android.cmd | ||
| if errorlevel 1 exit /b %ERRORLEVEL% | ||
|
|
||
| set "PATH=%ANDROID_SDK_ROOT%\cmake\%ANDROID_CMAKE_VERSION%\bin;%ANDROID_NDK%;%PATH%" | ||
|
|
||
| echo Building SDK | ||
| pushd .\lib\android_build | ||
| call .\gradlew.bat maesdk:assemble app:assemble %* | ||
| popd | ||
|
|
||
| echo Building Tests | ||
| pushd .\lib\android_build | ||
| call .\gradlew.bat maesdk:test %* | ||
| popd | ||
|
|
||
| popd |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.