Skip to content

Commit

Permalink
ci: Fixes conda job
Browse files Browse the repository at this point in the history
  • Loading branch information
frgfm committed Oct 19, 2023
1 parent c3d4d0d commit f51c460
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,14 @@ jobs:
- uses: conda-incubator/setup-miniconda@v2
with:
auto-update-conda: true
python-version: 3.9
python-version: "3.9"
auto-activate-base: true
- name: Install dependencies
run: conda install -y conda-build conda-verify
- run: |
python setup.py sdist
mkdir conda-dist
mamba env list | grep -v "^$\|#" |awk '{print $1;}'|xargs -I{} -d "\n" sh -c 'printf "Env: {}\t"; conda list -n {} |grep "^python\s";
mamba env list
conda-build .conda/ -c pytorch --output-folder conda-dist
ls -l conda-dist/noarch/*tar.bz2

0 comments on commit f51c460

Please sign in to comment.