-
Notifications
You must be signed in to change notification settings - Fork 13.3k
GitHub Actions: preparations, part 2 #67733
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
Conversation
In their infinite wisdom, Apple decided that (starting from macOS 10.15 onwards) /usr/include is not the location we should all search in for our beloved C headers. Instead, we should look inside the extremely intuitive and easily guessable new path: /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk/usr/include Because why not.
@@ -6,7 +6,8 @@ IFS=$'\n\t' | |||
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" | |||
|
|||
if isWindows; then | |||
pacman -S --noconfirm --needed base-devel ca-certificates make diffutils tar | |||
pacman -S --noconfirm --needed base-devel ca-certificates make diffutils tar \ | |||
binutils |
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.
It's weird, they are provided by mingw-w64
toolchain (in a version that really works for Windows).
@bors: r+ |
📌 Commit 39ddbeb has been approved by |
GitHub Actions: preparations, part 2 This PR adds the second batch of commits in preparation for GitHub Actions: * Removed hardcoded Azure Pipelines variables from `publish_toolstate.sh` * Fixed a bug in `shared.sh`'s GitHub Actions support * Fixed binutils missing from MSYS2 on Windows 2019 (GitHub Actions-specific) * Fixed wrong sysroot in macOS 10.15 onwards (GitHub Actions-specific) This PR does **not** yet add any builders on GitHub Actions. r? @alexcrichton
☀️ Test successful - checks-azure |
Your PR failed (pretty log, raw log). Through arcane magic we have determined that the following fragments from the build log may contain information about the problem. Click to expand the log.
I'm a bot! I can only do what humans tell me to, so if this was not helpful or you have suggestions for improvements, please ping or otherwise contact |
set -euo pipefail | ||
IFS=$'\n\t' | ||
|
||
source "$(cd "$(dirname "$0")" && pwd)/../shared.sh" |
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.
Probably source "$(cd "$(dirname "$0")" && pwd)/shared.sh"
?
This PR adds the second batch of commits in preparation for GitHub Actions:
publish_toolstate.sh
shared.sh
's GitHub Actions supportThis PR does not yet add any builders on GitHub Actions.
r? @alexcrichton