We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e14fdc commit afce7e3Copy full SHA for afce7e3
ci/build.yml
@@ -54,11 +54,20 @@ jobs:
54
name: 'ubuntu_20_04'
55
demands: assignment -equals default
56
steps:
57
+ - checkout: self
58
+ - bash: |
59
+ echo "The checkout step failed. Displaying Git status to identify unstaged changes:"
60
+ set -euo pipefail
61
+ cd sdk
62
+ git status
63
+ displayName: 'Show Git Status on Checkout Failure'
64
+ condition: failed()
65
- bash: |
66
set -euo pipefail
67
cd sdk
68
eval "$(./dev-env/bin/dade-assist)"
69
./ci/docs-sphinx-build.sh
70
+ condition: succeeded()
71
72
- job: Linux
73
dependsOn:
0 commit comments