diff --git a/.appveyor.yml b/.appveyor.yml index ea5673017..ae109b720 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -14,7 +14,11 @@ build_script: - set AR=llvm-ar - set AS=llvm-as - set LIBPTHREAD=-lpthreads -- bash -lc "source activate && cd /c/projects/blis && ./configure --disable-shared intel64 && make AR=llvm-ar CPICFLAGS= LIBM= LIBPTHREAD=-lpthreads -j4" +- bash -lc "source activate && cd /c/projects/blis && ./configure --disable-shared --enable-cblas --enable-threading=pthreads --prefix=/c/blis intel64" +- bash -lc "source activate && cd /c/projects/blis && make AR=llvm-ar CPICFLAGS= LIBM= LIBPTHREAD=-lpthreads -j4" +- bash -lc "source activate && cd /c/projects/blis && make install" +- ps: Compress-Archive -Path C:\blis -DestinationPath C:\blis.zip +- ps: Push-AppveyorArtifact C:\blis.zip test_script: - bash -lc "source activate && cd /c/projects/blis && make AR=llvm-ar CPICFLAGS= LIBM= LIBPTHREAD=-lpthreads check"