Commit 89697c04 authored by rusty1s's avatar rusty1s
Browse files

fix windows

parent bcfc80b4
...@@ -2,7 +2,7 @@ sudo: enabled ...@@ -2,7 +2,7 @@ sudo: enabled
env: env:
global: global:
- TORCH=1.4.0 - TORCH_VERSION=1.4.0
# jobs: # jobs:
# - FORCE_CUDA=0 TORCH=${TORCH_VERSION}+cpu # - FORCE_CUDA=0 TORCH=${TORCH_VERSION}+cpu
# - FORCE_CUDA=1 CUDA_SHORT=9.2 CUDA=9.2.148-1 UBUNTU_VERSION=ubuntu1604 CUBLAS=cuda-cublas-dev-9-2 TORCH=${TORCH_VERSION}+cu92 # - FORCE_CUDA=1 CUDA_SHORT=9.2 CUDA=9.2.148-1 UBUNTU_VERSION=ubuntu1604 CUBLAS=cuda-cublas-dev-9-2 TORCH=${TORCH_VERSION}+cu92
...@@ -16,6 +16,7 @@ jobs: ...@@ -16,6 +16,7 @@ jobs:
python: 3.7.6 python: 3.7.6
env: env:
- IDX=cpu - IDX=cpu
- TORCH=${TORCH_VERSION}+${IDX}
- name: linux/cu92 - name: linux/cu92
os: linux os: linux
language: python language: python
...@@ -26,6 +27,7 @@ jobs: ...@@ -26,6 +27,7 @@ jobs:
- CUDA=9.2.148-1 - CUDA=9.2.148-1
- UBUNTU_VERSION=ubuntu1604 - UBUNTU_VERSION=ubuntu1604
- CUBLAS=cuda-cublas-dev-9-2 - CUBLAS=cuda-cublas-dev-9-2
- TORCH=${TORCH_VERSION}+${IDX}
- name: linux/cu100 - name: linux/cu100
os: linux os: linux
language: python language: python
...@@ -36,6 +38,7 @@ jobs: ...@@ -36,6 +38,7 @@ jobs:
- CUDA=10.0.130-1 - CUDA=10.0.130-1
- UBUNTU_VERSION=ubuntu1804 - UBUNTU_VERSION=ubuntu1804
- CUBLAS=cuda-cublas-dev-10-0 - CUBLAS=cuda-cublas-dev-10-0
- TORCH=${TORCH_VERSION}+${IDX}
- name: linux/cu101 - name: linux/cu101
os: linux os: linux
language: python language: python
...@@ -46,18 +49,21 @@ jobs: ...@@ -46,18 +49,21 @@ jobs:
- CUDA=10.1.105-1 - CUDA=10.1.105-1
- UBUNTU_VERSION=ubuntu1804 - UBUNTU_VERSION=ubuntu1804
- CUBLAS=libcublas-dev - CUBLAS=libcublas-dev
- TORCH=${TORCH_VERSION}
- name: macosx/cpu - name: macosx/cpu
os: osx os: osx
osx_image: xcode11.3 osx_image: xcode11.3
language: shell language: shell
env: env:
- IDX=cpu - IDX=cpu
- TORCH=${TORCH_VERSION}
- name: windows/cpu - name: windows/cpu
os: windows os: windows
language: shell language: shell
env: env:
- IDX=cpu - IDX=cpu
- PATH=/c/Python37:/c/Python37/Scripts:$PATH - PATH=/c/Python37:/c/Python37/Scripts:$PATH
- TORCH=${TORCH_VERSION}+${IDX}
before_install: before_install:
- choco install python --version 3.7.6 - choco install python --version 3.7.6
- python -m pip install --upgrade --user pip - python -m pip install --upgrade --user pip
...@@ -113,10 +119,11 @@ after_success: ...@@ -113,10 +119,11 @@ after_success:
- codecov - codecov
deploy: deploy:
provider: s3 provider: s3
edge: true
skip_cleanup: true
access_key_id: AKIAIZNS6U2JRBGA3OHA access_key_id: AKIAIZNS6U2JRBGA3OHA
secret_access_key: ${S3_SECRET_ACCESS_KEY} secret_access_key: ${S3_SECRET_ACCESS_KEY}
bucket: pytorch-scatter bucket: pytorch-scatter
skip_cleanup: true
local-dir: dist/${IDX} local-dir: dist/${IDX}
upload-dir: whl/${IDX} upload-dir: whl/${IDX}
acl: public_read acl: public_read
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment