Skip to content

Commit 98a6c01

Browse files
committed
[skip ci] build wheel
1 parent 0c77520 commit 98a6c01

File tree

1 file changed

+18
-13
lines changed

1 file changed

+18
-13
lines changed

.github/workflows/building.yml

Lines changed: 18 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,14 @@ jobs:
1010
strategy:
1111
fail-fast: false
1212
matrix:
13-
os: [ubuntu-18.04, macos-10.15, windows-latest]
14-
python-version: [3.6, 3.7, 3.8, 3.9]
15-
torch-version: [1.8.0, 1.9.0]
16-
cuda-version: ['cpu', 'cu101', 'cu102', 'cu111']
13+
# os: [ubuntu-18.04, macos-10.15, windows-latest]
14+
os: [ubuntu-18.04]
15+
# python-version: [3.6, 3.7, 3.8, 3.9]
16+
python-version: [3.9]
17+
# torch-version: [1.8.0, 1.9.0]
18+
torch-version: [1.9.0]
19+
# cuda-version: ['cpu', 'cu101', 'cu102', 'cu111']
20+
cuda-version: ['cu102']
1721
exclude:
1822
- torch-version: 1.9.0
1923
cuda-version: 'cu101'
@@ -35,6 +39,7 @@ jobs:
3539

3640
- name: Update pip
3741
run: |
42+
ldd --version
3843
pip install --upgrade pip
3944
4045
- name: Install CUDA ${{ matrix.cuda-version }}
@@ -69,13 +74,13 @@ jobs:
6974
pip install wheel
7075
python setup.py bdist_wheel --dist-dir=dist
7176
72-
- name: Configure AWS
73-
uses: aws-actions/configure-aws-credentials@v1
74-
with:
75-
aws-access-key-id: ${{ secrets.AWS_KEY_ID }}
76-
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
77-
aws-region: us-east-1
77+
# - name: Configure AWS
78+
# uses: aws-actions/configure-aws-credentials@v1
79+
# with:
80+
# aws-access-key-id: ${{ secrets.AWS_KEY_ID }}
81+
# aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
82+
# aws-region: us-east-1
7883

79-
- name: Upload wheel
80-
run: |
81-
aws s3 sync dist s3://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+${{ matrix.cuda-version }} --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers
84+
# - name: Upload wheel
85+
# run: |
86+
# aws s3 sync dist s3://pytorch-geometric.com/whl/torch-${{ matrix.torch-version }}+${{ matrix.cuda-version }} --grants read=uri=http://acs.amazonaws.com/groups/global/AllUsers

0 commit comments

Comments
 (0)