[ci] now enable cancel jobs in progress
This commit is contained in:
parent
87a07fb111
commit
c05cc39899
|
@ -7,6 +7,10 @@ on:
|
|||
schedule:
|
||||
- cron: "0 0 * * 0 " # weekly
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
# Environment variables
|
||||
env:
|
||||
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
|
||||
|
|
|
@ -7,6 +7,10 @@ on:
|
|||
schedule:
|
||||
- cron: "0 0 * * 0 " # weekly
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
# Multiple job to tests
|
||||
jobs:
|
||||
# Test the RTL compilation compatibility
|
||||
|
|
|
@ -7,6 +7,10 @@ env:
|
|||
DOCKER_REPO: ${{ secrets.DOCKER_REPO }}
|
||||
REPO_OWNER: ${{ github.repository_owner }}
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
change_detect:
|
||||
name: "Detect code changes"
|
||||
|
|
|
@ -7,6 +7,10 @@ on:
|
|||
schedule:
|
||||
- cron: "0 0 * * 0 " # weekly
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
# Multiple job to tests
|
||||
jobs:
|
||||
change_detect:
|
||||
|
|
Loading…
Reference in New Issue