We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c2053db + 17082e4 commit 45ec070Copy full SHA for 45ec070
1 file changed
.github/workflows/integration_tests.yml
@@ -10,7 +10,7 @@ on:
10
secrets:
11
CODECOV_TOKEN: { required: false }
12
jobs:
13
- integration_tests:
+ run:
14
runs-on: infra-tests
15
timeout-minutes: 30
16
permissions:
@@ -117,3 +117,16 @@ jobs:
117
with:
118
name: Service Logs (${{ matrix.name }})
119
path: ~/logs/*.log
120
+
121
+ integration_tests:
122
+ needs: run
123
+ if: always()
124
+ runs-on: ubuntu-latest
125
+ steps:
126
+ - name: Aggregate matrix result
127
+ run: |
128
+ if [[ "${{ needs.run.result }}" != "success" ]]; then
129
+ echo "matrix result: ${{ needs.run.result }}"
130
+ exit 1
131
+ fi
132
+ echo "all matrix shards succeeded"
0 commit comments