mirror of
https://github.com/codeflash-ai/codeflash.git
synced 2026-05-04 18:25:17 +00:00
cancel-in-progress
This commit is contained in:
parent
4d5407959c
commit
f4bb9079cb
12 changed files with 48 additions and 0 deletions
4
.github/workflows/e2e-async.yaml
vendored
4
.github/workflows/e2e-async.yaml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
async-optimization:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
benchmark-bubble-sort-optimization:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
bubble-sort-optimization-pytest-no-git:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
bubble-sort-optimization-unittest:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
end-to-end-test-coverage:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
futurehouse-structure:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
4
.github/workflows/e2e-init-optimization.yaml
vendored
4
.github/workflows/e2e-init-optimization.yaml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
- '**' # Trigger for all paths
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
init-optimization:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
4
.github/workflows/e2e-topological-sort.yaml
vendored
4
.github/workflows/e2e-topological-sort.yaml
vendored
|
|
@ -7,6 +7,10 @@ on:
|
|||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
topological-sort-worktree-optimization:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
4
.github/workflows/e2e-tracer-replay.yaml
vendored
4
.github/workflows/e2e-tracer-replay.yaml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
- '**' # Trigger for all paths
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
tracer-replay:
|
||||
# Dynamically determine if environment is needed only when workflow files change and contributor is external
|
||||
|
|
|
|||
4
.github/workflows/mypy.yml
vendored
4
.github/workflows/mypy.yml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
- main
|
||||
pull_request:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
type-check-cli:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
4
.github/workflows/unit-tests.yaml
vendored
4
.github/workflows/unit-tests.yaml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
unit-tests:
|
||||
strategy:
|
||||
|
|
|
|||
4
.github/workflows/windows-unit-tests.yml
vendored
4
.github/workflows/windows-unit-tests.yml
vendored
|
|
@ -6,6 +6,10 @@ on:
|
|||
pull_request:
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ${{ github.workflow }}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
||||
jobs:
|
||||
windows-unit-tests:
|
||||
continue-on-error: true
|
||||
|
|
|
|||
Loading…
Reference in a new issue