We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36a3057 commit 3002d46Copy full SHA for 3002d46
1 file changed
.github/workflows/ci.yml
@@ -400,15 +400,19 @@ jobs:
400
401
export V=1
402
403
+ # Prevent GitHub timeout on long mac builds
404
( while true; do echo "❤️ still building mac depends…"; sleep 60; done ) &
405
- echo "▶ Adding temporary clang shim for OpenSSL…"
406
+ echo "▶ Adding temporary clang shim for OpenSSL domd script…"
407
mkdir -p fakeclang
408
cat <<'EOF' > fakeclang/clang
409
#!/bin/bash
- exec x86_64-apple-darwin11-clang "$@"
410
+ # Use system clang with macOS target flags added later by darwin.mk
411
+ exec /usr/bin/clang "$@"
412
EOF
413
chmod +x fakeclang/clang
414
+
415
+ # Inject shim into PATH so OpenSSL can find "clang"
416
export PATH="$(pwd)/fakeclang:$PATH"
417
418
echo "▶ Running depends build…"
0 commit comments