Skip to content

Commit a27c87c

Browse files
committed
ci: Try fix appveyor
1 parent 34d4c10 commit a27c87c

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

.appveyor.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,31 +9,27 @@ environment:
99
global:
1010
STACK_ROOT: "c:\\sr"
1111
matrix:
12-
- GHC: "8.10"
13-
- GHC: "8.8"
14-
- GHC: "8.6"
12+
- GHC: "9.10"
13+
- GHC: "9.6"
14+
- GHC: "9.0"
1515
- GHC: "8.4"
16-
- GHC: "8.2"
17-
- GHC: "8.0"
18-
# - GHC: "7.10"
19-
# - GHC: "7.8" # failed to install ghc: https://ci.appveyor.com/project/tmcdonell/cuda/build/1.0.4/job/ufhtj0klyq73psas#L149
2016

2117
before_build:
2218
# http://help.appveyor.com/discussions/problems/6312-curl-command-not-found
2319
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
2420
- set PATH=C:\Users\appveyor\AppData\Roaming\local\bin;%PATH%
2521

26-
# install CUDA-9.0
27-
- appveyor DownloadFile "https://developer.nvidia.com/compute/cuda/9.0/Prod/network_installers/cuda_9.0.176_windows_network-exe" -FileName install_cuda.exe
28-
- install_cuda.exe -s compiler_9.0 cudart_9.0 cublas_9.0 cublas_dev_9.0 cufft_9.0 cufft_dev_9.0 cusolver_9.0 cusolver_dev_9.0 cusparse_9.0 cusparse_dev_9.0
29-
- set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v9.0\nvvm\bin;%PATH%
30-
- set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v9.0\bin;%PATH%
22+
# install CUDA-13.0
23+
- appveyor DownloadFile "https://developer.download.nvidia.com/compute/cuda/13.0.2/network_installers/cuda_13.0.2_windows_network.exe" -FileName install_cuda.exe
24+
- install_cuda.exe -s compiler_13.0 cudart_13.0 cublas_13.0 cublas_dev_13.0 cufft_13.0 cufft_dev_13.0 cusolver_13.0 cusolver_dev_13.0 cusparse_13.0 cusparse_dev_13.0
25+
- set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v13.0\nvvm\bin;%PATH%
26+
- set PATH=%ProgramFiles%\NVIDIA GPU Computing Toolkit\CUDA\v13.0\bin;%PATH%
3127
- nvcc --version
3228

3329
# CUDA refuses to install the driver if no compatible GPU can be found, so
3430
# copy these .dll files manually
35-
- appveyor DownloadFile "https://drive.google.com/uc?export=download&id=14x0RX8QlHQ6vKhimbR4FDRgfP7EoHfgc" -FileName nvdriver-9.0.176.7z
36-
- 7z x nvdriver-9.0.176.7z -oC:\Windows\System32
31+
# - appveyor DownloadFile "https://drive.google.com/uc?export=download&id=14x0RX8QlHQ6vKhimbR4FDRgfP7EoHfgc" -FileName nvdriver-9.0.176.7z
32+
# - 7z x nvdriver-9.0.176.7z -oC:\Windows\System32
3733

3834
# install stack
3935
- appveyor DownloadFile "https://www.stackage.org/stack/windows-x86_64" -FileName stack.zip

0 commit comments

Comments
 (0)