You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- version: 0.2.19.{build}
-
- #environment:
-
- platform:
- - x64
-
- os: Visual Studio 2017
-
- configuration: Release
-
- clone_folder: c:\projects\OpenBLAS
-
- init:
- - git config --global core.autocrlf input
-
- clone_depth: 5
-
- skip_tags: true
-
- matrix:
- fast_finish: false
-
- skip_commits:
- # Add [av skip] to commit messages
- message: /\[av skip\]/
-
- environment:
- global:
- CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
- matrix:
- - COMPILER: clang-cl
- WITH_FORTRAN: yes
- - COMPILER: clang-cl
- DYNAMIC_ARCH: ON
- WITH_FORTRAN: no
- - COMPILER: cl
-
- install:
- - if [%COMPILER%]==[clang-cl] call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
- - if [%COMPILER%]==[clang-cl] conda config --add channels conda-forge --force
- - if [%COMPILER%]==[clang-cl] conda install --yes --quiet clangdev cmake
-
- - if [%WITH_FORTRAN%]==[no] conda install --yes --quiet ninja
- - if [%WITH_FORTRAN%]==[yes] conda install --yes --quiet -c isuruf kitware-ninja
- - if [%WITH_FORTRAN%]==[yes] conda install --yes --quiet flang
-
- - if [%COMPILER%]==[clang-cl] call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvarsall.bat" x64
- - if [%COMPILER%]==[clang-cl] set "LIB=%CONDA_INSTALL_LOCN%\Library\lib;%LIB%"
- - if [%COMPILER%]==[clang-cl] set "CPATH=%CONDA_INSTALL_LOCN%\Library\include;%CPATH%"
-
- before_build:
- - ps: if (-Not (Test-Path .\build)) { mkdir build }
- - cd build
- - if [%COMPILER%]==[cl] cmake -G "Visual Studio 15 2017 Win64" ..
- - if [%WITH_FORTRAN%]==[no] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl -DMSVC_STATIC_CRT=ON ..
- - if [%WITH_FORTRAN%]==[yes] cmake -G "Ninja" -DCMAKE_CXX_COMPILER=clang-cl -DCMAKE_C_COMPILER=clang-cl -DCMAKE_Fortran_COMPILER=flang -DBUILD_WITHOUT_LAPACK=no -DNOFORTRAN=0 ..
- - if [%DYNAMIC_ARCH%]==[ON] cmake -DDYNAMIC_ARCH=ON -DDYNAMIC_LIST='CORE2;NEHALEM;SANDYBRIDGE;BULLDOZER;HASWELL' ..
-
- build_script:
- - cmake --build .
-
- test_script:
- - echo Running Test
- - cd utest
- - openblas_utest
|