-
Notifications
You must be signed in to change notification settings - Fork 6.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[macos ci] update to 2022-01-03 (#22314)
* [macos ci] update to 2022-01-03 * update the instructions * forgot to update azure-pipelines-osx.yml * install parallels in Install-Prerequisites.ps1 * oops * fix ace, libsoundio, and libpqxx * tensorflow doesn't yet support macOS 12
- Loading branch information
1 parent
964e758
commit 5edd518
Showing
22 changed files
with
272 additions
and
242 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
--- /dev/null | ||
+++ b/include/makeinclude/platform_macosx_monterey.GNU | ||
@@ -0,0 +1,2 @@ | ||
+include $(ACE_ROOT)/include/makeinclude/platform_macosx_bigsur.GNU | ||
+ | ||
|
||
--- a/include/makeinclude/platform_macosx.GNU | ||
+++ b/include/makeinclude/platform_macosx.GNU | ||
@@ -24,6 +24,9 @@ | ||
MACOS_CODENAME_VER_11_1 := bigsur | ||
MACOS_CODENAME_VER_11_2 := bigsur | ||
MACOS_CODENAME_VER_11_latest := bigsur | ||
+MACOS_CODENAME_VER_12_0 := monterey | ||
+MACOS_CODENAME_VER_12_1 := monterey | ||
+MACOS_CODENAME_VER_12_latest := monterey | ||
|
||
MACOS_CODENAME = $(MACOS_CODENAME_VER_$(MACOS_MAJOR_VERSION)_$(MACOS_MINOR_VERSION)) | ||
|
||
@@ -42,6 +45,12 @@ else ifeq ($(MACOS_MAJOR_VERSION), 11) | ||
## just use the latest known version | ||
MACOS_CODENAME = $(MACOS_CODENAME_VER_11_latest) | ||
endif | ||
+else ifeq ($(MACOS_MAJOR_VERSION),12) | ||
+ ifeq ($(shell test $(MACOS_MINOR_VERSION) -gt 1; echo $$?),0) | ||
+ ## if the detected version is greater than the latest know version, | ||
+ ## just use the latest known version | ||
+ MACOS_CODENAME = $(MACOS_CODENAME_VER_12_latest) | ||
+ endif | ||
else | ||
## Unsupported major version | ||
$(error Unsupported MacOS version $(MACOS_RELEASE_VERSION)) |
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 |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"name": "ace", | ||
"version": "7.0.5", | ||
"port-version": 2, | ||
"port-version": 3, | ||
"maintainers": "Johnny Willemsen <[email protected]>", | ||
"description": "The ADAPTIVE Communication Environment", | ||
"homepage": "https://www.dre.vanderbilt.edu/~schmidt/ACE.html", | ||
|
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,15 @@ | ||
# apple clang 13 has a bug where [[likely]] or [[unlikely]] returns | ||
# don't count for checking that a constexpr function has a return, | ||
# so at least one return must be unmarked | ||
--- a/src/robusttransaction.cxx | ||
+++ b/src/robusttransaction.cxx | ||
@@ -62,9 +62,8 @@ constexpr tx_stat parse_status(std::string_view text) noexcept | ||
case 'i': | ||
if (text == in_progress) | ||
PQXX_LIKELY return tx_in_progress; | ||
break; | ||
} | ||
- PQXX_UNLIKELY | ||
return tx_unknown; | ||
} | ||
|
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 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
Oops, something went wrong.