Skip to content

Commit

Permalink
fixing pipeline condition (#209)
Browse files Browse the repository at this point in the history
Fixing regression introduced in #207 - don't continue pipeline on lint/unit test errors.
  • Loading branch information
jotaylo authored Feb 25, 2020
1 parent b0da645 commit 1dbb72c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .pipelines/diabetes_regression-ci-build-train.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ stages:

- stage: 'Trigger_AML_Pipeline'
displayName: 'Train model'
condition: not(variables['MODEL_BUILD_ID'])
condition: and(succeeded(), not(variables['MODEL_BUILD_ID']))
jobs:
- job: "Get_Pipeline_ID"
condition: and(succeeded(), eq(coalesce(variables['auto-trigger-training'], 'true'), 'true'))
Expand Down

0 comments on commit 1dbb72c

Please sign in to comment.