File: appveyor.yml

package info (click to toggle)
ants 2.5.4%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 11,672 kB
  • sloc: cpp: 85,685; sh: 15,850; perl: 863; xml: 115; python: 111; makefile: 68
file content (54 lines) | stat: -rw-r--r-- 1,599 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# Adapt as necessary starting from here

  # - GENERATOR: "Visual Studio 14 Win64"
  #   CONFIG: Release
  #   COMPILER: MSVC   
environment:
  matrix:
      - GENERATOR: "MinGW Makefiles"
        MINGW_DIR: mingw32
        CONFIG: Release
        COMPILER: MinGW    
  itktag: c5138560409c75408ff76bccff938f21e5dcafc6

init:
  # - set PATH=C:\MinGW\bin;C:\MinGW\msys\1.0\bin;%PATH%;
  - set PATH=C:\MinGW\bin;%PATH%;
  - cmd: ECHO %PATH%
  # - set PATH=%PATH%;C:\Users\appveyor\AppData\Local\Yarn\bin
  # - set PATH=%PATH%;C:\Program Files\AppVeyor\BuildAgent\
  # - set PATH=%PATH%;C:\Windows\system32
  # - set PATH=%PATH%;C:\Windows
  # - set PATH=%PATH%;C:\Windows\System32\Wbem
  # - set PATH=%PATH%;C:\Windows\System32\WindowsPowerShell\v1.0\
  # - set PATH=%PATH%;C:\Program Files\7-Zip
  - cd ../
  - git clone https://github.com/InsightSoftwareConsortium/ITK.git
  - cd ITK
  - git checkout master
  - git checkout %itktag%
  - cd ../
  # - git clone https://itk.org/ITK.git
  - mkdir ITKbin
  - cd ITKbin
  - cmake -G "%GENERATOR%" -DCMAKE_BUILD_TYPE:STRING="Release" -DCMAKE_SH:BOOL=OFF -DBUILD_EXAMPLES:BOOL=OFF -DBUILD_TESTING:BOOL=OFF  ../ITK
  - mingw32-make -j 2 
  - mingw32-make install
  - rm -rf ../ITK
  - set PATH=%CD%\ITKbin;%PATH%;
  - echo %APPVEYOR_BUILD_FOLDER%

before_build:
  - cd %APPVEYOR_BUILD_FOLDER%
  - cmake -G "%GENERATOR%" -DRUN_LONG_TESTS=OFF -DRUN_SHORT_TESTS=ON ./.. 
  - cd ANTS-build/
  - mingw32-make test
  - mingw32-make install

on_failure:
  - 7z a failure.zip *
  - appveyor PushArtifact failure.zip

artifacts:
  - path: '\*_*.zip'
    name: Bits