"...text-generation-inference.git" did not exist on "8405581fcd9f5a3c81696c080232eb944f98ccf2"
Commit 095902d9 authored by rusty1s's avatar rusty1s
Browse files

[skip ci] build pytorch 1.9.0

parent bcb73c5d
...@@ -10,10 +10,12 @@ jobs: ...@@ -10,10 +10,12 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [ubuntu-18.04, macos-10.15, windows-latest] # os: [ubuntu-18.04, macos-10.15, windows-latest]
os: [windows-latest]
python-version: [3.6, 3.7, 3.8, 3.9] python-version: [3.6, 3.7, 3.8, 3.9]
torch-version: [1.8.0] torch-version: [1.8.0]
cuda-version: ['cpu', 'cu101', 'cu102', 'cu111'] # cuda-version: ['cpu', 'cu101', 'cu102', 'cu111']
cuda-version: ['cpu']
exclude: exclude:
- torch-version: 1.9.0 - torch-version: 1.9.0
cuda-version: 'cu101' cuda-version: 'cu101'
...@@ -69,11 +71,13 @@ jobs: ...@@ -69,11 +71,13 @@ jobs:
pip install wheel pip install wheel
python setup.py bdist_wheel --dist-dir=dist python setup.py bdist_wheel --dist-dir=dist
# - name: Upload wheel - name: Configure AWS
# uses: shallwefootball/s3-upload-action@master uses: aws-actions/configure-aws-credentials@v1
# with: with:
# aws_key_id: ${{ secrets.AWS_KEY_ID }} aws-access-key-id: ${{ secrets.AWS_KEY_ID }}
# aws_secret_access_key: ${{ secrets.AWS_SECRET_ACCESS_KEY}} aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
# aws_bucket: 'pytorch-geometric.com' aws-region: us-east-1
# source_dir: 'dist'
# destination_dir: 'whl/torch-${{ matrix.torch-version }}+${{ matrix.cuda-version }}' - name: Upload wheel
run: |
aws s3 sync dist s3://pytorch-geometric.com/whl/${{ matrix.torch-version }}+${{ matrix.cuda-version }} --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers
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