Skip to content

Commit

Permalink
Try removing file://
Browse files Browse the repository at this point in the history
  • Loading branch information
roomrys committed Sep 4, 2024
1 parent c18455e commit 93bfef4
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/build_conda_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -160,19 +160,13 @@ jobs:
miniforge-version: latest
condarc-file: ${{ matrix.condarc }}
python-version: ${{ matrix.pyver }}
environment-file: environment_build.yml
activate-environment: sleap_ci
conda-solver: "libmamba"

- name: Create conda channel from artifact
run:
conda-build index $(pwd)/build

- name: Search for package
run: conda search -c file://$(pwd)/build sleap
run: conda search -c $(pwd)/build sleap

- name: Create conda environment
run: conda create -y -n sleap_test -c file://$(pwd)/build ${{ matrix.conda-channels }} sleap
run: conda create -y -n sleap_test -c $(pwd)/build ${{ matrix.conda-channels }} sleap

- name: Activate virtual environment
run: conda activate sleap_test
Expand Down

0 comments on commit 93bfef4

Please sign in to comment.