File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -121,7 +121,7 @@ jobs:
121
121
run : |
122
122
./prepare_build.sh
123
123
${{ matrix.libgccjit_version.env_extra }} ./build.sh ${{ matrix.libgccjit_version.extra }}
124
- cargo test ${{ matrix.libgccjit_version.extra }}
124
+ ${{ matrix.libgccjit_version.env_extra }} cargo test ${{ matrix.libgccjit_version.extra }}
125
125
./clean_all.sh
126
126
127
127
- name : Prepare dependencies
Original file line number Diff line number Diff line change @@ -50,6 +50,11 @@ pub fn main_inner(profile: Profile) {
50
50
"-o" , exe. to_str ( ) . expect ( "to_str" ) ,
51
51
path. to_str ( ) . expect ( "to_str" ) ,
52
52
] ) ;
53
+ if let Some ( flags) = option_env ! ( "TEST_FLAGS" ) {
54
+ for flag in flags. split_whitespace ( ) {
55
+ compiler. arg ( & flag) ;
56
+ }
57
+ }
53
58
match profile {
54
59
Profile :: Debug => { }
55
60
Profile :: Release => {
You can’t perform that action at this time.
0 commit comments