Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ jobs:
- linux
- x64
- bmark
concurrency:
group: bench-${{ github.ref }}
cancel-in-progress: true
if: github.event.pull_request.draft == false
steps:
- name: Clean up
Expand Down
16 changes: 12 additions & 4 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ on:

workflow_dispatch:

concurrency:
group: ${{ github.ref }}
cancel-in-progress: true

env:
DOCKER_USER_OPTION: '$UID:$GID'

Expand All @@ -26,6 +22,9 @@ jobs:
- linux
- x64
- sre
concurrency:
group: check-${{ github.ref }}
cancel-in-progress: true
container:
image: paritytech/ci-linux:production
steps:
Expand All @@ -50,6 +49,9 @@ jobs:
- linux
- x64
- sre
concurrency:
group: testcov-${{ github.ref }}
cancel-in-progress: true
steps:
- name: Clean up
continue-on-error: true
Expand Down Expand Up @@ -82,6 +84,9 @@ jobs:
- linux
- x64
- sre
concurrency:
group: tests-${{ github.ref }}
cancel-in-progress: true
container:
image: paritytech/ci-linux:production
steps:
Expand All @@ -106,6 +111,9 @@ jobs:
- linux
- x64
- sre
concurrency:
group: lint-${{ github.ref }}
cancel-in-progress: true
container:
image: paritytech/ci-linux:production
steps:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/simnode.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
name: Run Simnode

on:
pull_request:
branches:
- releases
- main

jobs:
simnode:
runs-on:
- self-hosted
- linux
- x64
- sre
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
if: github.event.pull_request.draft == false
steps:
- name: Clean up
Expand Down