Skip to content

Commit

Permalink
Merge pull request #3587 from JohnTitor/fix-macos
Browse files Browse the repository at this point in the history
Fix CI
  • Loading branch information
JohnTitor authored Feb 17, 2024
2 parents 7d19eed + ba128d7 commit f5c4427
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/full_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,10 +62,11 @@ jobs:
ARCH_BITS: 64
ARCH: x86_64
- target: x86_64-pc-windows-msvc
- target: i686-pc-windows-gnu
env:
ARCH_BITS: 32
ARCH: i686
# FIXME: It currently causes segfaults.
#- target: i686-pc-windows-gnu
# env:
# ARCH_BITS: 32
# ARCH: i686
- target: i686-pc-windows-msvc
steps:
- uses: actions/checkout@v4
Expand Down
5 changes: 5 additions & 0 deletions libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -296,6 +296,8 @@ fn test_apple(target: &str) {
// it is a moving target, changing through versions
// also contains bitfields members
"tcp_connection_info" => true,
// FIXME: The size is changed in recent macOSes.
"malloc_introspection_t" => true,

_ => false,
}
Expand Down Expand Up @@ -2427,6 +2429,9 @@ fn test_freebsd(target: &str) {
true
}

// FIXME: Removed in FreeBSD 15:
"LOCAL_CONNWAIT" => true,

_ => false,
}
});
Expand Down

0 comments on commit f5c4427

Please sign in to comment.