mirror of
https://github.com/YuzuZensai/spleeter.git
synced 2026-01-06 04:32:43 +00:00
Update conda.yml
Remove GPU from build matrix
This commit is contained in:
11
.github/workflows/conda.yml
vendored
11
.github/workflows/conda.yml
vendored
@@ -9,14 +9,13 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python: [3.7, 3.8]
|
python: [3.7, 3.8]
|
||||||
package: [spleeter, spleeter-gpu]
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Set up Python 3.8
|
- name: Set up Python ${{ matrix.python }}
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: 3.8
|
python-version: ${{ matrix.python }}
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
$CONDA/bin/conda install conda-build
|
$CONDA/bin/conda install conda-build
|
||||||
@@ -25,7 +24,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
$CONDA/bin/conda config --add channels anaconda
|
$CONDA/bin/conda config --add channels anaconda
|
||||||
$CONDA/bin/conda config --add channels conda-forge
|
$CONDA/bin/conda config --add channels conda-forge
|
||||||
$CONDA/bin/conda build --python ${{ matrix.python }} conda/${{ matrix.package }}
|
$CONDA/bin/conda build --python ${{ matrix.python }} conda/spleeter
|
||||||
- name: Push package
|
- name: Push package
|
||||||
run: |
|
run: |
|
||||||
$CONDA/bin/anaconda login --username $ANACONDA_USERNAME --password $ANACONDA_PASSWORD
|
$CONDA/bin/anaconda login --username $ANACONDA_USERNAME --password $ANACONDA_PASSWORD
|
||||||
@@ -53,7 +52,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
C:\Miniconda\condabin\conda.bat config --add channels anaconda
|
C:\Miniconda\condabin\conda.bat config --add channels anaconda
|
||||||
C:\Miniconda\condabin\conda.bat config --add channels conda-forge
|
C:\Miniconda\condabin\conda.bat config --add channels conda-forge
|
||||||
C:\Miniconda\condabin\conda.bat build --python ${{ matrix.python }} conda/${{ matrix.package }}
|
C:\Miniconda\condabin\conda.bat build --python ${{ matrix.python }} conda\spleeter
|
||||||
- name: Push package
|
- name: Push package
|
||||||
run: |
|
run: |
|
||||||
anaconda login --username $ANACONDA_USERNAME --password $ANACONDA_PASSWORD
|
anaconda login --username $ANACONDA_USERNAME --password $ANACONDA_PASSWORD
|
||||||
|
|||||||
Reference in New Issue
Block a user