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 1d86882 commit 621382dCopy full SHA for 621382d
.github/workflows/docker-builds.yml
@@ -50,3 +50,17 @@ jobs:
50
push: ${{ github.ref == 'refs/heads/master' }}
51
tags: borda/docker_python-opencv-ffmpeg:${{ matrix.device }}-py${{ matrix.python_version }}-cv${{ matrix.opencv_version }}
52
timeout-minutes: 240
53
+
54
+ build-guardian:
55
+ runs-on: ubuntu-latest
56
+ needs: build-push
57
+ if: always()
58
+ steps:
59
+ - run: echo "${{ needs.build-push.result }}"
60
+ - name: failing...
61
+ if: needs.build-push.result == 'failure'
62
+ run: exit 1
63
+ - name: cancelled or skipped...
64
+ if: contains(fromJSON('["cancelled", "skipped"]'), needs.build-push.result)
65
+ timeout-minutes: 1
66
+ run: sleep 90
0 commit comments