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.

.appveyor.yml 899 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. image:
  2. - Visual Studio 2017
  3. configuration: Release
  4. clone_depth: 3
  5. matrix:
  6. fast_finish: false
  7. skip_commits:
  8. # Add [av skip] to commit messages
  9. message: /\[av skip\]/
  10. cache:
  11. - '%APPVEYOR_BUILD_FOLDER%\build'
  12. environment:
  13. global:
  14. CONDA_INSTALL_LOCN: C:\\Miniconda36-x64
  15. install:
  16. - call %CONDA_INSTALL_LOCN%\Scripts\activate.bat
  17. - conda config --add channels conda-forge --force
  18. - conda install --yes --quiet flang jom
  19. - call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" amd64
  20. - set "LIB=%CONDA_INSTALL_LOCN%\Library\lib;%LIB%"
  21. - set "CPATH=%CONDA_INSTALL_LOCN%\Library\include;%CPATH%"
  22. before_build:
  23. - ps: if (-Not (Test-Path .\build)) { mkdir build }
  24. - cd build
  25. - cmake -G "NMake Makefiles JOM" -DCMAKE_Fortran_COMPILER=flang -DCMAKE_BUILD_TYPE=Release -DBUILD_TESTING=ON ..
  26. build_script:
  27. - cmake --build .
  28. test_script:
  29. - ctest -j2