Skip to content

Commit 8bc1512

Browse files
committed
Fix CI on v0.2
1 parent ccf8a3e commit 8bc1512

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

.github/workflows/full_ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,10 @@ jobs:
6363
ARCH_BITS: 64
6464
ARCH: x86_64
6565
- target: x86_64-pc-windows-msvc
66-
- target: i686-pc-windows-gnu
67-
env:
68-
ARCH_BITS: 32
69-
ARCH: i686
66+
#- target: i686-pc-windows-gnu
67+
# env:
68+
# ARCH_BITS: 32
69+
# ARCH: i686
7070
- target: i686-pc-windows-msvc
7171
steps:
7272
- uses: actions/checkout@v4

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,10 +58,10 @@ jobs:
5858
ARCH_BITS: 64
5959
ARCH: x86_64
6060
- target: x86_64-pc-windows-msvc
61-
- target: i686-pc-windows-gnu
62-
env:
63-
ARCH_BITS: 32
64-
ARCH: i686
61+
#- target: i686-pc-windows-gnu
62+
# env:
63+
# ARCH_BITS: 32
64+
# ARCH: i686
6565
- target: i686-pc-windows-msvc
6666
steps:
6767
- uses: actions/checkout@v4

libc-test/build.rs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,8 @@ fn test_apple(target: &str) {
312312
// it is a moving target, changing through versions
313313
// also contains bitfields members
314314
"tcp_connection_info" => true,
315+
// FIXME: The size is changed in recent macOSes.
316+
"malloc_introspection_t" => true,
315317

316318
_ => false,
317319
}
@@ -2468,6 +2470,9 @@ fn test_freebsd(target: &str) {
24682470
true
24692471
}
24702472

2473+
// FIXME: Removed in FreeBSD 15:
2474+
"LOCAL_CONNWAIT" if freebsd_ver >= Some(15) => true,
2475+
24712476
_ => false,
24722477
}
24732478
});

0 commit comments

Comments
 (0)