This repository was archived by the owner on Apr 24, 2022. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ branches:
8
8
- master
9
9
- ci
10
10
- travis
11
+ - hunter
11
12
- /^release.*$/
12
13
matrix :
13
14
include :
@@ -27,9 +28,11 @@ before_install: |
27
28
fi
28
29
if [ "$TRAVIS_OS_NAME" = linux ]; then
29
30
scripts/install_cmake.sh
30
- sudo pip install --upgrade requests pyopenssl
31
+ pyenv local 3.6
32
+ pip install --user requests
31
33
elif [ "$TRAVIS_OS_NAME" == "osx" ]; then
32
- sudo pip install requests
34
+ HOMEBREW_NO_AUTO_UPDATE=1 brew install -q python3
35
+ pip3 install -q requests
33
36
fi
34
37
script :
35
38
- cmake -DHUNTER_JOBS_NUMBER=4 -DETHASHCUDA=$CUDA -DETHASHCL=ON -DAPICORE=ON -H. -Bbuild
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ HunterGate(
18
18
)
19
19
20
20
if (HUNTER_ENABLED )
21
- find_package (PythonInterp )
21
+ find_package (PythonInterp 3 )
22
22
if (PYTHONINTERP_FOUND )
23
23
hunter_gate_self (
24
24
"${HUNTER_CACHED_ROOT} "
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ install: | # Download CUDA Windows installer (local) and extract /compiler/* to
20
20
7z x CUDA-v9.0-WindowsServer2012.zip -oC:/
21
21
set PATH=%PATH%;C:/CUDA/v9.0/bin
22
22
nvcc -V
23
+ set PATH=C:\Python36-x64;C:\Python36-x64\Scripts;%PATH%
23
24
pip install requests
24
25
before_build :
25
26
- cmake -G "Visual Studio 14 2015 Win64" -H. -Bbuild -DETHASHCUDA=ON -DAPICORE=ON
You can’t perform that action at this time.
0 commit comments