"tests/vscode:/vscode.git/clone" did not exist on "f190714e7766b7b9dca2b0b3126182b90e814f9a"
Commit f9c38ab1 authored by rusty1s's avatar rusty1s
Browse files

[skip ci] python 3.9 wheels

parent cf887f24
...@@ -9,10 +9,15 @@ jobs: ...@@ -9,10 +9,15 @@ jobs:
strategy: strategy:
matrix: matrix:
os: [macos-10.15] #[ubuntu-18.04] os: [macos-10.15, ubuntu-18.04]
python-version: [3.6, 3.7, 3.8, 3.9] python-version: [3.9]
torch-version: [1.9.0] torch-version: [1.8.0]
cuda-version: ['cpu'] cuda-version: ['cpu', 'cu102', 'cu111']
exclude:
- os: macos-10.15
cuda-version: 'cu102'
- os: macos-10.15
cuda-version: 'cu111'
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
...@@ -23,7 +28,6 @@ jobs: ...@@ -23,7 +28,6 @@ jobs:
- name: Update pip - name: Update pip
run: | run: |
echo ${{ runner.os }}
pip install --upgrade pip pip install --upgrade pip
- name: Install CUDA ${{ matrix.cuda-version }} - name: Install CUDA ${{ matrix.cuda-version }}
...@@ -32,12 +36,12 @@ jobs: ...@@ -32,12 +36,12 @@ jobs:
source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}.sh source .github/workflows/cuda/${{ matrix.cuda-version }}-${{ runner.os }}.sh
- name: Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }} - name: Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }}
if : ${{ runner.os != 'macos' }} if : ${{ runner.os != 'macOS' }}
run: | run: |
pip install torch==${{ matrix.torch-version}}+${{ matrix.cuda-version }} -f https://download.pytorch.org/whl/torch_stable.html pip install torch==${{ matrix.torch-version}}+${{ matrix.cuda-version }} -f https://download.pytorch.org/whl/torch_stable.html
- name: Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }} on macOS - name: Install PyTorch ${{ matrix.torch-version }}+${{ matrix.cuda-version }} on macOS
if : ${{ runner.os == 'macos' }} if : ${{ runner.os == 'macOS' }}
run: | run: |
pip install torch==${{ matrix.torch-version}} -f https://download.pytorch.org/whl/torch_stable.html pip install torch==${{ matrix.torch-version}} -f https://download.pytorch.org/whl/torch_stable.html
......
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