Upload artifacts built on appveyor (#228)

* Upload artifacts

* Fix install in appveyor
This commit is contained in:
Isuru Fernando
2018-07-04 18:31:01 -06:00
committed by Field G. Van Zee
parent e32b2ef983
commit eac4bdf986

View File

@@ -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"