Skip to content

Commit

Permalink
If at first you don't succeeed...
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Dec 10, 2023
1 parent d060fe0 commit 7295350
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .azure/templates/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@ steps:
conda install --channel=conda-forge --name=base conda-lock
conda-lock install --name myEnvironment ${{ parameters.conda_lock }}
displayName: Create Anaconda environment from lockfile
condition: eq(variables['use_lockfile'], true)
condition: eq(variables.use_lockfile, true)
- bash: |
conda env create --name myEnvironment \
--file environments/environment.yml \
--file environments/$(FIPY_SOLVERS)-environment.yml
displayName: Create Anaconda environment from environments
condition: eq(variables['use_lockfile'], false)
condition: eq(variables.use_lockfile, false)
- bash: |
if [[ "${{ parameters.conda_packages }}" != "" ]]; then
Expand Down

0 comments on commit 7295350

Please sign in to comment.