File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -81,11 +81,11 @@ jobs:
81
81
CARGO_PROFILE_DEV_SPLIT_DEBUGINFO : packed
82
82
CARGO_PROFILE_TEST_SPLIT_DEBUGINFO : packed
83
83
- run : cargo test --manifest-path crates/without_debuginfo/Cargo.toml
84
- - if : contains( matrix.os, 'macos')
84
+ - if : matrix.os != 'macos-latest'
85
85
run : cargo test --manifest-path crates/line-tables-only/Cargo.toml
86
86
# 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'
89
89
90
90
# Test debuginfo compression still works
91
91
- run : cargo test
Original file line number Diff line number Diff line change @@ -3,7 +3,8 @@ fn main() {
3
3
4
4
cc:: Build :: new ( )
5
5
. opt_level ( 0 )
6
- . flag ( "-gline-tables-only" )
6
+ . debug ( false )
7
+ . flag ( "-g1" )
7
8
. file ( "src/callback.c" )
8
9
. compile ( "libcallback.a" ) ;
9
10
}
You can’t perform that action at this time.
0 commit comments