Commit 5521115c authored by rusty1s's avatar rusty1s
Browse files

[skip ci] build conda

parent bf47ea86
...@@ -4,7 +4,7 @@ on: [workflow_dispatch] ...@@ -4,7 +4,7 @@ on: [workflow_dispatch]
jobs: jobs:
conda-build: wheel:
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
strategy: strategy:
...@@ -28,16 +28,50 @@ jobs: ...@@ -28,16 +28,50 @@ jobs:
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Set up Miniconda with Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
- uses: conda-incubator/setup-miniconda@v2 uses: actions/setup-python@v2
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
# name: Building Conda
- name: Conda info # on: [workflow_dispatch]
run: |
conda info # jobs:
conda list
which python # conda-build:
# runs-on: ${{ matrix.os }}
# strategy:
# fail-fast: false
# matrix:
# os: [ubuntu-16.04]
# python-version: [3.8]
# torch-version: [1.8.0, 1.9.0]
# cuda-version: ['cpu', 'cu101', 'cu102', 'cu111']
# exclude:
# - torch-version: 1.9.0
# cuda-version: 'cu101'
# - os: macos-10.15
# cuda-version: 'cu101'
# - os: macos-10.15
# cuda-version: 'cu102'
# - os: macos-10.15
# cuda-version: 'cu111'
# - os: windows-latest
# cuda-version: 'cu101'
# steps:
# - uses: actions/checkout@v2
# - name: Set up Miniconda with Python ${{ matrix.python-version }}
# - uses: conda-incubator/setup-miniconda@v2
# with:
# python-version: ${{ matrix.python-version }}
# - name: Conda info
# run: |
# conda info
# conda list
# which python
# - name: Install CUDA ${{ matrix.cuda-version }} # - name: Install CUDA ${{ matrix.cuda-version }}
# if: ${{ matrix.cuda-version != 'cpu' }} # if: ${{ matrix.cuda-version != 'cpu' }}
......
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