mirror of
https://github.com/denoland/deno.git
synced 2024-12-22 07:14:47 -05:00
chore: try to fix mac runner (#23214)
https://github.com/actions/runner-images/issues/9626
This commit is contained in:
parent
d3d3582b1f
commit
3e40c510c0
2 changed files with 18 additions and 0 deletions
11
.github/workflows/ci.generate.ts
vendored
11
.github/workflows/ci.generate.ts
vendored
|
@ -547,6 +547,17 @@ const ci = {
|
|||
if: "matrix.use_sysroot",
|
||||
...sysRootStep,
|
||||
},
|
||||
{
|
||||
name: "Remove macOS cURL --ipv4 flag",
|
||||
run: [
|
||||
// cURL's --ipv4 flag is busted for now
|
||||
"curl --version",
|
||||
"which curl",
|
||||
"cat /etc/hosts",
|
||||
"rm ~/.curlrc || true",
|
||||
].join("\n"),
|
||||
if: `matrix.os == 'macos'`,
|
||||
},
|
||||
{
|
||||
name: "Install macOS aarch64 lld",
|
||||
run: [
|
||||
|
|
7
.github/workflows/ci.yml
vendored
7
.github/workflows/ci.yml
vendored
|
@ -324,6 +324,13 @@ jobs:
|
|||
CC=clang-16
|
||||
CFLAGS=-flto=thin --sysroot=/sysroot
|
||||
__0
|
||||
- name: Remove macOS cURL --ipv4 flag
|
||||
run: |-
|
||||
curl --version
|
||||
which curl
|
||||
cat /etc/hosts
|
||||
rm ~/.curlrc || true
|
||||
if: '!(matrix.skip) && (matrix.os == ''macos'')'
|
||||
- name: Install macOS aarch64 lld
|
||||
run: ./tools/install_prebuilt.js ld64.lld
|
||||
if: '!(matrix.skip) && (matrix.os == ''macos'' && matrix.arch == ''aarch64'')'
|
||||
|
|
Loading…
Reference in a new issue