File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -176,6 +176,7 @@ jobs:
176176 runs-on : ubuntu-latest
177177 needs :
178178 - build
179+ - dependency-health
179180 - tests
180181 - examples-core
181182 - examples-governance
@@ -186,12 +187,14 @@ jobs:
186187 - name : Report job results
187188 run : |
188189 echo "build: ${{ needs.build.result }}"
190+ echo "dependency-health: ${{ needs.dependency-health.result }}"
189191 echo "tests: ${{ needs.tests.result }}"
190192 echo "examples-core: ${{ needs.examples-core.result }}"
191193 echo "examples-governance: ${{ needs.examples-governance.result }}"
192194 echo "examples-governance-redis: ${{ needs.examples-governance-redis.result }}"
193195
194196 if [ "${{ needs.build.result }}" != "success" ] || \
197+ [ "${{ needs.dependency-health.result }}" != "success" ] || \
195198 [ "${{ needs.tests.result }}" != "success" ] || \
196199 [ "${{ needs.examples-core.result }}" != "success" ] || \
197200 [ "${{ needs.examples-governance.result }}" != "success" ] || \
Original file line number Diff line number Diff line change 1+ <Project >
2+ <PropertyGroup >
3+ <BaseIntermediateOutputPath >$(MSBuildProjectDirectory)/obj/$(MSBuildProjectName)/</BaseIntermediateOutputPath >
4+ </PropertyGroup >
5+ </Project >
You can’t perform that action at this time.
0 commit comments