Skip to content

Commit 7199528

Browse files
committed
ci: use different concurrency.group values for different .yml files
1 parent 1cea7b0 commit 7199528

File tree

4 files changed

+6
-5
lines changed

4 files changed

+6
-5
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "**.md"
1010

1111
concurrency:
12-
group: build-${{ github.event.pull_request.number || github.sha }}
12+
group: build-ci-${{ github.event.pull_request.number || github.sha }}
1313
cancel-in-progress: true
1414

1515
jobs:

.github/workflows/ci_sanitized.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ on:
5454
- 'vlib/v/embed_file/**.v'
5555

5656
concurrency:
57-
group: build-${{ github.event.pull_request.number || github.sha }}
57+
group: build-sanitized-${{ github.event.pull_request.number || github.sha }}
5858
cancel-in-progress: true
5959

6060
jobs:

.github/workflows/other_ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "**.md"
1010

1111
concurrency:
12-
group: build-${{ github.event.pull_request.number || github.sha }}
12+
group: build-other-${{ github.event.pull_request.number || github.sha }}
1313
cancel-in-progress: true
1414

1515
jobs:

.github/workflows/paths_ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ on:
99
- "**.md"
1010

1111
concurrency:
12-
group: build-${{ github.event.pull_request.number || github.sha }}
12+
group: build-paths-${{ github.event.pull_request.number || github.sha }}
1313
cancel-in-progress: true
1414

1515
jobs:
@@ -76,7 +76,8 @@ jobs:
7676
## tcc has a problem interpreting paths with non latin letters in them,
7777
## by default, but that can be solved with passing -Bthirdparty/tcc
7878
## but after that V fails self building with:
79-
####### builder error: cannot write to folder D:\a\v\v\你好 my $path, @с интервали: No such file or directory
79+
####### builder error: cannot write to folder
80+
####### D:\a\v\v\你好 my $path, @с интервали: No such file or directory
8081
## and that happens even for gcc builds, not just tcc ones
8182

8283
steps:

0 commit comments

Comments
 (0)