Commit 53385db6 authored by rusty1s's avatar rusty1s
Browse files

retry

parent cf0cd742
...@@ -15,7 +15,7 @@ jobs: ...@@ -15,7 +15,7 @@ jobs:
language: python language: python
python: 3.7.6 python: 3.7.6
env: env:
- DEVICE=cpu - IDX=cpu
# - name: linux/cu92 # - name: linux/cu92
# os: linux # os: linux
# language: python # language: python
...@@ -43,7 +43,7 @@ jobs: ...@@ -43,7 +43,7 @@ jobs:
# language: python # language: python
# python: 3.7.6 # python: 3.7.6
# env: # env:
# - DEVICE=cu101 # - IDX=cu101
# - CUDA_SHORT=10.1 # - CUDA_SHORT=10.1
# - CUDA=10.1.105-1 # - CUDA=10.1.105-1
# - UBUNTU_VERSION=ubuntu1804 # - UBUNTU_VERSION=ubuntu1804
...@@ -99,7 +99,7 @@ jobs: ...@@ -99,7 +99,7 @@ jobs:
install: install:
- source script/install.sh - source script/install.sh
- pip3 install numpy - pip3 install numpy
- pip3 install torch==${TORCH}+${DEVICE} -f https://download.pytorch.org/whl/torch_stable.html - pip3 install torch==${TORCH}+${IDX} -f https://download.pytorch.org/whl/torch_stable.html
- pip3 install flake8 - pip3 install flake8
- pip3 install codecov - pip3 install codecov
- python3 setup.py install || python setup.py install - python3 setup.py install || python setup.py install
...@@ -108,7 +108,7 @@ script: ...@@ -108,7 +108,7 @@ script:
- flake8 . - flake8 .
- python3 setup.py test || python setup.py test - python3 setup.py test || python setup.py test
after_success: after_success:
- python3 setup.py bdist_wheel --dist-dir=dist/${DEVICE} - python3 setup.py bdist_wheel --dist-dir=dist/${IDX}
- codecov - codecov
deploy: deploy:
provider: s3 provider: s3
...@@ -116,12 +116,12 @@ deploy: ...@@ -116,12 +116,12 @@ deploy:
secret_access_key: secret_access_key:
secure: ${S3_SECURE_SECRET_KEY} secure: ${S3_SECURE_SECRET_KEY}
bucket: pytorch-scatter bucket: pytorch-scatter
local-dir: dist/${DEVICE}/*.whl local-dir: dist/${IDX}/*.whl
upload-dir: whl/${DEVICE} upload-dir: whl/${IDX}
acl: public_read acl: public_read
on: on:
repo: rusty1s/pytorch_scatter repo: rusty1s/pytorch_scatter
# tags: true # tags: true
all_branches: true branch: travis
notifications: notifications:
email: false email: false
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