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

[skip ci] macos

parent 3020da69
...@@ -23,6 +23,7 @@ jobs: ...@@ -23,6 +23,7 @@ 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 }}
...@@ -31,9 +32,15 @@ jobs: ...@@ -31,9 +32,15 @@ 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' }}
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
if : ${{ runner.os == 'macos' }}
run: |
pip install torch==${{ matrix.torch-version}} -f https://download.pytorch.org/whl/torch_stable.html
- name: Install main package for CPU - name: Install main package for CPU
if: ${{ matrix.cuda-version == 'cpu' }} if: ${{ matrix.cuda-version == 'cpu' }}
run: | run: |
......
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