File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-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 : matrix.os != 'macos-latest'
84
+ - if : contains( matrix.os, 'macos')
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 @@ -4,7 +4,7 @@ fn main() {
4
4
cc:: Build :: new ( )
5
5
. opt_level ( 0 )
6
6
. debug ( false )
7
- . flag ( "-g1 " )
7
+ . flag ( "-g2 " )
8
8
. file ( "src/callback.c" )
9
9
. compile ( "libcallback.a" ) ;
10
10
}
You can’t perform that action at this time.
0 commit comments