Skip to content

Commit

Permalink
Merge pull request #3589 from JohnTitor/fix-ci-libc-0.2
Browse files Browse the repository at this point in the history
Fix CI on v0.2
  • Loading branch information
JohnTitor authored Feb 18, 2024
2 parents ccf8a3e + 8bc1512 commit a55ce2f
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/full_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,10 +63,10 @@ jobs:
ARCH_BITS: 64
ARCH: x86_64
- target: x86_64-pc-windows-msvc
- target: i686-pc-windows-gnu
env:
ARCH_BITS: 32
ARCH: i686
#- target: i686-pc-windows-gnu
# env:
# ARCH_BITS: 32
# ARCH: i686
- target: i686-pc-windows-msvc
steps:
- uses: actions/checkout@v4
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ jobs:
ARCH_BITS: 64
ARCH: x86_64
- target: x86_64-pc-windows-msvc
- target: i686-pc-windows-gnu
env:
ARCH_BITS: 32
ARCH: i686
#- 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 @@ -312,6 +312,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 @@ -2468,6 +2470,9 @@ fn test_freebsd(target: &str) {
true
}

// FIXME: Removed in FreeBSD 15:
"LOCAL_CONNWAIT" if freebsd_ver >= Some(15) => true,

_ => false,
}
});
Expand Down

0 comments on commit a55ce2f

Please sign in to comment.