-
Notifications
You must be signed in to change notification settings - Fork 7.4k
[vcpkg] [cudnn] [msmpi] [openmpi] Update VMSS #11365
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
Merged
Merged
Changes from all commits
Commits
Show all changes
19 commits
Select commit
Hold shift + click to select a range
f9adbc4
[msmpi] update to 10.1
cenit d27a5a5
[openmpi] update to 4.0.3
cenit a5fa3f3
[openmpi] remove unnecessary build artifacts
cenit 1079797
[llvm] Add LLVM installed by Visual Studio for potential consumption …
BillyONeal 3d16c99
[networkdirect] Add the Windows WDK to VM
MVoz ad585ac
[qt5] Add additional prerequisites for qt components.
BillyONeal 35829f4
[sdl2] Apply @JackBoosY 's fix for SDL2 on Visual Studio 2019 16.6.
BillyONeal d56cd88
[cuda] Remove clearly unused link to nonexistent cuda target.
BillyONeal 361a9b0
Use a VM series with a 400GB temporary disk which replaces the 'insta…
BillyONeal 71a50b0
Log provision results for inspection later.
BillyONeal 235e4e2
Fix incorrect Write-Progress in create-vmss.ps1.
BillyONeal 1f0de4f
Remove Linux VM attempt to put the work tree on /mnt.
BillyONeal aa09ed1
Remove no longer needed /home manipulation in provisioning script.
BillyONeal b24fc0b
Skip Add-MPPreference when the AV is not installed.
BillyONeal e2c6a74
Combine some apt installs, remove /etc/debian_version workaround, def…
BillyONeal e760c3a
[boost-context] [boost-coroutine] [ppconsul] [nettle] Update baselines.
BillyONeal 29766a5
[qt5] Baseline qt5-translations for now as Qt was broken by Visual St…
BillyONeal 0b9ac2e
Merge delete tombstones and PR build into the same pipeline, controll…
BillyONeal f58cd6e
Update pools
BillyONeal 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,5 @@ | ||
| Source: msmpi | ||
| Version: 10.0-2 | ||
| Version: 10.1 | ||
| Homepage: https://docs.microsoft.com/en-us/message-passing-interface/microsoft-mpi | ||
| Description: Microsoft MPI | ||
| Supports: windows | ||
| Supports: windows |
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,5 +1,5 @@ | ||
| Source: openmpi | ||
| Version: 4.0.1 | ||
| Version: 4.0.3 | ||
| Homepage: https://www.open-mpi.org/ | ||
| Description: The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers. | ||
| Supports: !(windows|uwp) | ||
| Supports: !(windows|uwp) |
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,100 +1,37 @@ | ||
| include(vcpkg_common_functions) | ||
|
|
||
| if(VCPKG_CMAKE_SYSTEM_NAME STREQUAL "WindowsStore" OR NOT VCPKG_CMAKE_SYSTEM_NAME) | ||
| message(FATAL_ERROR "This port is only for openmpi on Unix-like systems") | ||
| endif() | ||
| vcpkg_fail_port_install(ON_TARGET "Windows" "UWP") | ||
|
|
||
| vcpkg_check_linkage(ONLY_DYNAMIC_LIBRARY) | ||
|
|
||
| set(OpenMPI_FULL_VERSION "4.0.1") | ||
| set(OpenMPI_FULL_VERSION "4.0.3") | ||
| set(OpenMPI_SHORT_VERSION "4.0") | ||
|
|
||
| vcpkg_download_distfile(ARCHIVE | ||
| URLS "https://download.open-mpi.org/release/open-mpi/v${OpenMPI_SHORT_VERSION}/openmpi-${OpenMPI_FULL_VERSION}.tar.gz" | ||
| FILENAME "openmpi-${OpenMPI_FULL_VERSION}.tar.gz" | ||
| SHA512 760716974cb6b25ad820184622e1ee7926bc6fda87db6b574f76792bc1ca99522e52195866c14b7cb2df5a4981efdaf9f71d2c5533cc0e8e45c2c4b3b74cbacc | ||
| SHA512 23a9dfb7f4a63589b82f4e073a825550d3bc7e6b34770898325323ef4a28ed90b47576acaae6be427eb2007b37a88e18c1ea44d929b8ca083fe576ef1111fef6 | ||
| ) | ||
|
|
||
| if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release") | ||
| list(APPEND BUILD_TYPES "release") | ||
| endif() | ||
| if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug") | ||
| list(APPEND BUILD_TYPES "debug") | ||
| endif() | ||
|
|
||
| set(SOURCE_PATH_DEBUG ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-debug/openmpi-${OpenMPI_FULL_VERSION}) | ||
| set(SOURCE_PATH_RELEASE ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-release/openmpi-${OpenMPI_FULL_VERSION}) | ||
| set(OUT_PATH_DEBUG ${SOURCE_PATH_RELEASE}/../../make-build-${TARGET_TRIPLET}-debug) | ||
| set(OUT_PATH_RELEASE ${SOURCE_PATH_RELEASE}/../../make-build-${TARGET_TRIPLET}-release) | ||
| file(REMOVE_RECURSE ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-debug/) | ||
| file(REMOVE_RECURSE ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-release/) | ||
| file(MAKE_DIRECTORY ${OUT_PATH_DEBUG}) | ||
| file(MAKE_DIRECTORY ${OUT_PATH_RELEASE}) | ||
|
|
||
| foreach(BUILD_TYPE IN LISTS BUILD_TYPES) | ||
| vcpkg_extract_source_archive(${ARCHIVE} ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-${BUILD_TYPE}) | ||
| #vcpkg_apply_patches(SOURCE_PATH ${CURRENT_BUILDTREES_DIR}/src-${TARGET_TRIPLET}-${BUILD_TYPE}/openmpi-${OpenMPI_FULL_VERSION} PATCHES patch.file) | ||
| endforeach() | ||
| vcpkg_extract_source_archive_ex( | ||
| OUT_SOURCE_PATH SOURCE_PATH | ||
| ARCHIVE ${ARCHIVE} | ||
| ) | ||
|
|
||
| vcpkg_find_acquire_program(PERL) | ||
| get_filename_component(PERL_PATH ${PERL} DIRECTORY) | ||
| vcpkg_add_to_path(${PERL_PATH}) | ||
|
|
||
| set(BASH bash) | ||
| vcpkg_configure_make( | ||
| SOURCE_PATH ${SOURCE_PATH} | ||
| OPTIONS | ||
| --with-hwloc=internal | ||
| --with-libevent=internal | ||
| OPTIONS_DEBUG | ||
| --enable-debug | ||
| ) | ||
|
|
||
| if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug") | ||
| message(STATUS "Configuring ${TARGET_TRIPLET}-dbg") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "${SOURCE_PATH_DEBUG}/configure --prefix=${OUT_PATH_DEBUG} --enable-debug" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_DEBUG}" | ||
| LOGNAME "config-${TARGET_TRIPLET}-dbg" | ||
| ) | ||
| message(STATUS "Building ${TARGET_TRIPLET}-dbg") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "make -j ${VCPKG_CONCURRENCY}" | ||
| NO_PARALLEL_COMMAND ${BASH} --noprofile --norc -c "make" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_DEBUG}" | ||
| LOGNAME "make-build-${TARGET_TRIPLET}-dbg" | ||
| ) | ||
| message(STATUS "Installing ${TARGET_TRIPLET}-dbg") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "make install" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_DEBUG}" | ||
| LOGNAME "make-install-${TARGET_TRIPLET}-dbg" | ||
| ) | ||
| file(COPY ${OUT_PATH_DEBUG}/lib DESTINATION ${CURRENT_PACKAGES_DIR}/debug) | ||
| message(STATUS "Installing ${TARGET_TRIPLET}-dbg done") | ||
| endif() | ||
| vcpkg_install_make() | ||
|
|
||
| if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "release") | ||
| message(STATUS "Configuring ${TARGET_TRIPLET}-rel") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "${SOURCE_PATH_RELEASE}/configure --prefix=${OUT_PATH_RELEASE}" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_RELEASE}" | ||
| LOGNAME "config-${TARGET_TRIPLET}-rel" | ||
| ) | ||
| message(STATUS "Building ${TARGET_TRIPLET}-rel") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "make -j ${VCPKG_CONCURRENCY}" | ||
| NO_PARALLEL_COMMAND ${BASH} --noprofile --norc -c "make" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_RELEASE}" | ||
| LOGNAME "make-build-${TARGET_TRIPLET}-rel" | ||
| ) | ||
| message(STATUS "Installing ${TARGET_TRIPLET}-rel") | ||
| vcpkg_execute_required_process( | ||
| COMMAND ${BASH} --noprofile --norc -c "make install" | ||
| WORKING_DIRECTORY "${SOURCE_PATH_RELEASE}" | ||
| LOGNAME "make-install-${TARGET_TRIPLET}-rel" | ||
| ) | ||
| file(COPY ${OUT_PATH_RELEASE}/lib DESTINATION ${CURRENT_PACKAGES_DIR}) | ||
| file(COPY ${OUT_PATH_RELEASE}/include DESTINATION ${CURRENT_PACKAGES_DIR}) | ||
| file(COPY ${OUT_PATH_RELEASE}/share DESTINATION ${CURRENT_PACKAGES_DIR}) | ||
| file(COPY ${OUT_PATH_RELEASE}/bin DESTINATION ${CURRENT_PACKAGES_DIR}) | ||
| message(STATUS "Installing ${TARGET_TRIPLET}-rel done") | ||
| endif() | ||
| file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/include") | ||
| file(REMOVE_RECURSE "${CURRENT_PACKAGES_DIR}/debug/share") | ||
|
|
||
| if(NOT DEFINED VCPKG_BUILD_TYPE OR VCPKG_BUILD_TYPE STREQUAL "debug") | ||
| file(INSTALL ${SOURCE_PATH_DEBUG}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/openmpi RENAME copyright) | ||
| else() | ||
| file(INSTALL ${SOURCE_PATH_RELEASE}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/openmpi RENAME copyright) | ||
| endif() | ||
| file(INSTALL ${SOURCE_PATH}/LICENSE DESTINATION ${CURRENT_PACKAGES_DIR}/share/${PORT} RENAME copyright) |
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 |
|---|---|---|
| @@ -0,0 +1,17 @@ | ||
|
|
||
| diff -r 398b67c0a7d3 -r 7c2f418f701b src/video/winrt/SDL_winrtgamebar.cpp | ||
| --- a/src/video/winrt/SDL_winrtgamebar.cpp Wed Jun 10 09:36:10 2020 -0700 | ||
| +++ b/src/video/winrt/SDL_winrtgamebar.cpp Wed Jun 10 09:38:43 2020 -0700 | ||
| @@ -25,7 +25,7 @@ | ||
| /* Windows includes */ | ||
| #include <roapi.h> | ||
| #include <windows.foundation.h> | ||
| -#include <EventToken.h> | ||
| +#include <windows.system.h> | ||
|
|
||
|
|
||
| /* SDL includes */ | ||
|
|
||
|
|
||
|
|
||
|
|
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 was deleted.
Oops, something went wrong.
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
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How does one set this variable?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You can make a PR that turns it on then turns it back off, or you can set it with the web interface.