Skip to content

Commit

Permalink
let it decide which env to update
Browse files Browse the repository at this point in the history
  • Loading branch information
valeriupredoi committed Jul 25, 2023
1 parent b7880b2 commit 00561e5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/install-from-source.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
conda --version
mamba --version
- name: Update environment
run: mamba update -n ${CONDA_DEFAULT_ENV} -f environment.yml
run: mamba update -f environment.yml
- run: mkdir -p source_install_linux_artifacts_python_${{ matrix.python-version }}
- name: Record versions
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
conda --version
mamba --version
- name: Update environment
run: mamba update -n ${CONDA_DEFAULT_ENV} -f environment.yml
run: mamba update -f environment.yml
- run: mkdir -p test_linux_artifacts_python_${{ matrix.python-version }}
- run: conda --version 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/conda_version.txt
- run: python -V 2>&1 | tee test_linux_artifacts_python_${{ matrix.python-version }}/python_version.txt
Expand Down

0 comments on commit 00561e5

Please sign in to comment.