Skip to content

Commit

Permalink
Debug environment
Browse files Browse the repository at this point in the history
  • Loading branch information
guyer committed Aug 3, 2024
1 parent 8f7f9a7 commit 28109fb
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .azure/templates/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,10 @@ steps:
displayName: Create Anaconda environment from environments
condition: or(eq(variables['Build.CronSchedule.DisplayName'], 'Daily midnight build'), ne(variables['CONDA_ENVIRONMENT_NOT_LOCK'],''))
- bash: |
conda env export --name myEnvironment
displayName: EnvironmentA
- bash: |
if [[ "${{ parameters.conda_packages }}" != "" ]]; then
source activate myEnvironment
Expand All @@ -64,6 +68,10 @@ steps:
fi
displayName: Install Anaconda packages
- bash: |
conda env export --name myEnvironment
displayName: EnvironmentB
- bash: |
if [[ "${{ parameters.pip_packages }}" != "" ]]; then
source activate myEnvironment
Expand Down

0 comments on commit 28109fb

Please sign in to comment.