@@ -12,24 +12,49 @@ configuration: Release
12
12
environment :
13
13
ROOTSYS : C:\root
14
14
PATH : ' %ROOTSYS%\bin;C:\Qt\5.6\msvc2015;C:\Python35;C:\Miniconda35;C:\Miniconda35\\Scripts;%PATH%'
15
+
16
+ init :
17
+ - ps : iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
18
+
15
19
before_build :
16
- - del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
17
20
- cmd : >-
18
- conda config --set always_yes yes --set changeps1 no
19
21
22
+ del "C:\Program Files (x86)\MSBuild\14.0\Microsoft.Common.targets\ImportAfter\Xamarin.Common.targets"
23
+
24
+ conda config --set always_yes yes --set changeps1 no
25
+
20
26
conda info -a
21
-
27
+
22
28
conda create -q -n test-environment numpy
23
-
29
+
24
30
activate test-environment
25
31
26
32
powershell -command "$clnt = new-object System.Net.WebClient; $clnt.DownloadFile(\"https://root.cern.ch/download/root_v5.34.36.win32.vc12.zip\",\"C:\\root_v5.34.36.win32.vc12.zip\")"
27
-
33
+
28
34
7z -y x C:\\root_v5.34.36.win32.vc12.zip -oC:\
29
35
30
- cd build
31
-
32
- cmake -DBUILD_onlinemon=ON -DBUILD_python=OFF ..
36
+ powershell -command "$clnt = new-object System.Net.WebClient; $clnt.DownloadFile(\"https://www.secure-endpoints.com/binaries/heimdal/Heimdal-AMD64-full-1-6-2-0.msi\",\"C:\\Heimdal-AMD64-full-1-6-2-0.msi\")"
37
+
38
+ powershell -command "msiexec /i \"C:\\Heimdal-AMD64-full-1-6-2-0.msi\" /quiet /qn /norestart /log install.log"
39
+
40
+ powershell -command "$clnt = new-object System.Net.WebClient; $clnt.DownloadFile(\"http://dl.openafs.org/dl/openafs/1.7.31/winxp/openafs-en_US-64bit-1-7-3100.msi\",\"C:\\openafs-en_US-64bit-1-7-3100.msi\")"
41
+
42
+ powershell -command "msiexec /i \"C:\\openafs-en_US-64bit-1-7-3100.msi\" /quiet /qn /norestart /log install.log"
43
+
44
+ powershell -command "$clnt = new-object System.Net.WebClient; $clnt.DownloadFile(\"http://dl.openafs.org/dl/openafs/1.7.31/winxp/openafs-32bit-tools-en_US-1-7-3100.msi\",\"C:\\openafs-32bit-tools-en_US-1-7-3100.msi\")"
45
+
46
+ powershell -command "msiexec /i \"C:\\openafs-32bit-tools-en_US-1-7-3100.msi\" /quiet /qn /norestart /log install.log"
47
+
48
+ powershell -command "Restart-Computer -Force"
49
+
50
+ powershell -command "Start-Sleep -s 10"
33
51
34
52
build_script :
53
+ - cd %APPVEYOR_BUILD_FOLDER%\build
54
+ - ps : $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
55
+ - cmake -DBUILD_onlinemon=ON -DBUILD_python=OFF -DBUILD_tlu=ON ..
56
+
35
57
- msbuild INSTALL.vcxproj
58
+
59
+ on_finish :
60
+ - ps : $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
0 commit comments