Skip to content

Commit 16adfb3

Browse files
Revert experiments
1 parent e7d74fb commit 16adfb3

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-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: contains(matrix.os, 'macos')
84+
- if: matrix.os != 'macos-latest'
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: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,8 @@ fn main() {
33

44
cc::Build::new()
55
.opt_level(0)
6-
.flag("-gline-tables-only")
6+
.debug(false)
7+
.flag("-g1")
78
.file("src/callback.c")
89
.compile("libcallback.a");
910
}

0 commit comments

Comments
 (0)