File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed
Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change 11name : Containers
22
33on :
4+ # We want to run the CI when anything is pushed to master.
5+ # Since master is a protected branch this only happens when a PR is merged.
6+ # This is a double check in case the PR was stale and had some issues.
47 push :
8+ branches :
9+ - master
510 pull_request :
611 workflow_dispatch :
712 schedule :
813 - cron : ' 0 0 * * 0' # weekly
914
15+ # We want to cancel previous runs for a given PR or branch / ref if another CI
16+ # run is requested.
17+ # See: https://docs.github.com/en/actions/using-jobs/using-concurrency
18+ concurrency :
19+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
20+ cancel-in-progress : true
21+
1022jobs :
1123
1224 Image :
Original file line number Diff line number Diff line change 11name : Test
22
33on :
4+ # We want to run the CI when anything is pushed to master.
5+ # Since master is a protected branch this only happens when a PR is merged.
6+ # This is a double check in case the PR was stale and had some issues.
47 push :
8+ branches :
9+ - master
510 pull_request :
611 workflow_dispatch :
712 schedule :
813 - cron : ' 0 0 * * *' # daily
914
15+ # We want to cancel previous runs for a given PR or branch / ref if another CI
16+ # run is requested.
17+ # See: https://docs.github.com/en/actions/using-jobs/using-concurrency
18+ concurrency :
19+ group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
20+ cancel-in-progress : true
21+
1022env :
1123 # default compiler for all non-compatibility tests
1224 MATRIX_EVAL : " CC=gcc-11 && CXX=g++-11"
You can’t perform that action at this time.
0 commit comments