File tree Expand file tree Collapse file tree 2 files changed +10
-7
lines changed
Expand file tree Collapse file tree 2 files changed +10
-7
lines changed Original file line number Diff line number Diff line change 44 push :
55 branches :
66 - master
7+ - " pr/*"
78 pull_request : {}
89
910jobs :
2324 runs-on : macos-10.15
2425 strategy :
2526 matrix :
26- feature : ["intel-mkl"]
27+ feature : ["intel-mkl", "source" ]
2728 steps :
2829 - uses : actions/checkout@v1
2930 - uses : actions-rs/cargo@v1
Original file line number Diff line number Diff line change @@ -97,12 +97,14 @@ fn download_archive_unix(out_dir: &Path) -> Fallible<()> {
9797}
9898
9999fn build_fftw ( flags : & [ & str ] , src_dir : & Path , out_dir : & Path ) {
100- run ( Command :: new ( "./configure" )
101- . arg ( "--with-pic" )
102- . arg ( "--enable-static" )
103- . arg ( format ! ( "--prefix={}" , out_dir. display( ) ) )
104- . args ( flags)
105- . current_dir ( & src_dir) ) ;
100+ run (
101+ Command :: new ( fs:: canonicalize ( src_dir. join ( "configure" ) ) . unwrap ( ) )
102+ . arg ( "--with-pic" )
103+ . arg ( "--enable-static" )
104+ . arg ( format ! ( "--prefix={}" , out_dir. display( ) ) )
105+ . args ( flags)
106+ . current_dir ( & src_dir) ,
107+ ) ;
106108 run ( Command :: new ( "make" )
107109 . arg ( format ! ( "-j{}" , var( "NUM_JOBS" ) . unwrap( ) ) )
108110 . current_dir ( & src_dir) ) ;
You can’t perform that action at this time.
0 commit comments