Skip to content

Commit 6290032

Browse files
attempt experimental fix of macos 15
1 parent 7b1be4c commit 6290032

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,11 +81,11 @@ jobs:
8181
CARGO_PROFILE_DEV_SPLIT_DEBUGINFO: packed
8282
CARGO_PROFILE_TEST_SPLIT_DEBUGINFO: packed
8383
- run: cargo test --manifest-path crates/without_debuginfo/Cargo.toml
84-
- if: matrix.os != 'macos-latest'
84+
- if: contains(matrix.os, 'macos')
8585
run: cargo test --manifest-path crates/line-tables-only/Cargo.toml
8686
# FIXME: This currently fails on macOS 15.
87-
- if: matrix.os == 'macos-latest'
88-
run: '! cargo test --manifest-path crates/line-tables-only/Cargo.toml'
87+
# - if: matrix.os == 'macos-latest'
88+
# run: '! cargo test --manifest-path crates/line-tables-only/Cargo.toml'
8989

9090
# Test debuginfo compression still works
9191
- run: cargo test

crates/line-tables-only/build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fn main() {
44
cc::Build::new()
55
.opt_level(0)
66
.debug(false)
7-
.flag("-g1")
7+
.flag("-g2")
88
.file("src/callback.c")
99
.compile("libcallback.a");
1010
}

0 commit comments

Comments
 (0)