Skip to content

Commit

Permalink
ci: prefer dedicated tiggers for platform workflows, so sporadic fail…
Browse files Browse the repository at this point in the history
…s can be retried quicker (#21251)
  • Loading branch information
ttytm committed Apr 11, 2024
1 parent 48800d4 commit 6be2717
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 36 deletions.
33 changes: 0 additions & 33 deletions .github/workflows/code_ci.yml

This file was deleted.

15 changes: 14 additions & 1 deletion .github/workflows/linux_ci.yml
@@ -1,7 +1,20 @@
name: CI Linux

on:
workflow_call:
push:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/linux_ci.yml'
pull_request:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/linux_ci.yml'

concurrency:
group: linux-ci-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
tcc:
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/macos_ci.yml
@@ -1,7 +1,20 @@
name: CI macOS

on:
workflow_call:
push:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/macos_ci.yml'
pull_request:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/macos_ci.yml'

concurrency:
group: macos-ci-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
clang:
Expand Down
15 changes: 14 additions & 1 deletion .github/workflows/windows_ci.yml
@@ -1,7 +1,20 @@
name: CI Windows

on:
workflow_call:
push:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/windows_ci.yml'
pull_request:
paths-ignore:
- '**.md'
- '**.yml'
- '!**/windows_ci.yml'

concurrency:
group: windows-ci-${{ github.event.pull_request.number || github.sha }}
cancel-in-progress: true

jobs:
gcc:
Expand Down

0 comments on commit 6be2717

Please sign in to comment.