"plugins/drude/platforms/cuda/tests/TestCudaDrudeForce.cpp" did not exist on "c7711f746f4153d6a0d7d7f768f44be958050de0"
appveyor.yml 2.44 KB
Newer Older
peastman's avatar
peastman committed
1
os: Visual Studio 2019
peastman's avatar
peastman committed
2
3
platform: x64
configuration: Release
Robert McGibbon's avatar
Robert McGibbon committed
4
5
6
shallow_clone: true
install:

peastman's avatar
peastman committed
7
# Setup shell for VS2015, x64
peastman's avatar
peastman committed
8
  - call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Auxiliary\Build\vcvarsall.bat" amd64
Robert McGibbon's avatar
Robert McGibbon committed
9
# Set path to python, git-bash tools.
peastman's avatar
peastman committed
10
  - "set PATH=C:\\Python35-x64;C:\\Python35-x64\\Scripts;%PATH%"
Robert McGibbon's avatar
Robert McGibbon committed
11
  - "set PATH=C:\\Program Files (x86)\\Git\\bin;%PATH%"
12
  - pip install pytest
peastman's avatar
peastman committed
13
  - pip install numpy
peastman's avatar
peastman committed
14
  - pip install cython
Robert McGibbon's avatar
Robert McGibbon committed
15

Robert McGibbon's avatar
Robert McGibbon committed
16
17
18
19
20
21
# Use cclash for compiler caching (experimental)
  - ps: wget https://github.com/inorton/cclash/releases/download/0.3.14/cclash-0.3.14.zip -OutFile cclash-0.3.14.zip
  - ps: 7z x cclash-0.3.14.zip
  - "set PATH=%APPVEYOR_BUILD_FOLDER%\\cclash-0.3.14;%PATH%"
  - "set CCLASH_DIR=C:\\ProgramData\\cclash"

Robert McGibbon's avatar
Robert McGibbon committed
22
# Download and install some OpenMM build dependencies (doxygen, swig)
23
  - choco install -y doxygen.install swig > null
Robert McGibbon's avatar
Robert McGibbon committed
24

25
# Download OpenCL Headers and build the ICD loader
peastman's avatar
peastman committed
26
  - ps: "[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.SecurityProtocolType]::Tls12;"
peastman's avatar
peastman committed
27
28
  - ps: $opencl_registry = "https://www.khronos.org/registry/cl"
  - ps: $opencl_github = "KhronosGroup/OpenCL-Headers"
29
30
31
32
33
34
35
  - ps: mkdir C:/opencl > $null
  - ps: cd C:/opencl
  - ps: wget $opencl_registry/specs/opencl-icd-1.2.11.0.tgz -OutFile opencl-icd-1.2.11.0.tgz
  - ps: 7z x opencl-icd-1.2.11.0.tgz > $null
  - ps: 7z x opencl-icd-1.2.11.0.tar > $null
  - ps: mv .\icd\* .
  - ps: mkdir inc/CL > $null
peastman's avatar
peastman committed
36
  - ps: wget https://github.com/$opencl_github/tree/master/CL -UseBasicParsing | select -ExpandProperty links | where {$_.href -like "*.h*"} | select -ExpandProperty title | foreach{ wget https://raw.githubusercontent.com/$opencl_github/master/CL/$_ -OutFile inc/CL/$_ -UseBasicParsing}
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
  - ps: mkdir lib > $null
  - ps: cd lib
  - cmake -G "NMake Makefiles" ..
  - nmake
  - cd %APPVEYOR_BUILD_FOLDER%

build_script:
  - ps: $env:CMAKE_FLAGS =
      "-DOPENMM_BUILD_PME_PLUGIN=ON
       -DOPENCL_INCLUDE_DIR=C:/opencl/inc
       -DOPENCL_LIBRARY=C:/opencl/lib/OpenCL.lib
       -DOPENMM_BUILD_EXAMPLES=OFF
       -DOPENMM_BUILD_OPENCL_TESTS=OFF
       -DCMAKE_BUILD_TYPE=Release
       -LA"
Robert McGibbon's avatar
Robert McGibbon committed
52
53
  - mkdir build
  - cd build
Robert McGibbon's avatar
Robert McGibbon committed
54
  - cmake -G "NMake Makefiles" %CMAKE_FLAGS% -DCMAKE_CXX_FLAGS_RELEASE="/MD /Od /Ob0 /D NDEBUG" ..
Robert McGibbon's avatar
No jom  
Robert McGibbon committed
55
56
57
  - cmake --build . --target install
  - cmake --build . --target PythonInstall

Robert McGibbon's avatar
Robert McGibbon committed
58
test_script:
Robert T. McGibbon's avatar
Robert T. McGibbon committed
59
  - python %APPVEYOR_BUILD_FOLDER%\devtools\run-ctest.py
Robert McGibbon's avatar
Robert McGibbon committed
60
  - cd python\tests
61
  - py.test -v
Robert McGibbon's avatar
Robert McGibbon committed
62
63
64

cache:
- C:\ProgramData\cclash -> appveyor.yml