Skip to content

Commit

Permalink
ci: disable py2 in appveyor
Browse files Browse the repository at this point in the history
  • Loading branch information
sbinet committed Aug 24, 2019
1 parent fea0a83 commit 343fda6
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,23 @@ branches:
environment:
GOPATH: c:\gopath
GOPY_APPVEYOR_CI: '1'
GODEBUG: 'cgocheck=0'
GOTRACEBACK: 'crash'
PYTHONUNBUFFERED: "1"
CPYTHON2DIR: "C:\\Python27-x64"
#CPYTHON2DIR: "C:\\Python27-x64"
CPYTHON3DIR: "C:\\Python37-x64"
PATH: '%GOPATH%\bin;%CPYTHON2DIR%;%CPYTHON2DIR%\\Scripts;%CPYTHON3DIR%;%CPYTHON3DIR%\\Scripts;C:\msys64\mingw64\bin;C:\msys64\usr\bin\;%PATH%'
#PATH: '%GOPATH%\bin;%CPYTHON2DIR%;%CPYTHON2DIR%\\Scripts;%CPYTHON3DIR%;%CPYTHON3DIR%\\Scripts;C:\msys64\mingw64\bin;C:\msys64\usr\bin\;%PATH%'
PATH: '%GOPATH%\bin;%CPYTHON3DIR%;%CPYTHON3DIR%\\Scripts;C:\msys64\mingw64\bin;C:\msys64\usr\bin\;%PATH%'

stack: go 1.11
stack: go 1.12

build_script:
- python --version
- "%CPYTHON2DIR%\\python --version"
#- "%CPYTHON2DIR%\\python --version"
- "%CPYTHON3DIR%\\python --version"
- "%CPYTHON2DIR%\\python -m pip install --upgrade pip"
#- "%CPYTHON2DIR%\\python -m pip install --upgrade pip"
- "%CPYTHON3DIR%\\python -m pip install --upgrade pip"
- "%CPYTHON2DIR%\\python -m pip install cffi"
#- "%CPYTHON2DIR%\\python -m pip install cffi"
- "%CPYTHON3DIR%\\python -m pip install cffi"
- "%CPYTHON2DIR%\\python -m pip install pybindgen"
#- "%CPYTHON2DIR%\\python -m pip install pybindgen"
- "%CPYTHON3DIR%\\python -m pip install pybindgen"
- go get -v -t ./...

Expand Down

0 comments on commit 343fda6

Please sign in to comment.