Skip to content

Commit

Permalink
Merge pull request #412 from perftool-incubator/dev-kmr
Browse files Browse the repository at this point in the history
update workflows to properly implement faux/non-faux given recent wor…
  • Loading branch information
k-rister authored Oct 9, 2024
2 parents 3c760da + 92c90ab commit 0e80920
Show file tree
Hide file tree
Showing 7 changed files with 54 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- LICENSE
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/crucible-release-ci.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/crucible-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/crucible-release-ci.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/crucible-merged.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/crucible-release-ci.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
Expand Down
18 changes: 17 additions & 1 deletion .github/workflows/crucible-release-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,23 @@ name: crucible-release-ci
on:
pull_request:
branches: [ master ]
workflow_dispatch:
paths-ignore:
- LICENSE
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
- 'docs/**'
- 'spec/**'
workflow_dispatch:

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

jobs:
call-crucible-release-remove:
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/faux-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ on:
- LICENSE
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/crucible-release-ci.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/faux-crucible-ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ on:
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/crucible-release-ci.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
Expand Down
23 changes: 23 additions & 0 deletions .github/workflows/faux-crucible-release-ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: faux-crucible-release-ci

on:
pull_request:
branches: [ master ]
paths:
- LICENSE
- '**.md'
- .github/workflows/run-crucible-tracking.yaml
- .github/workflows/crucible-merged.yaml
- .github/workflows/crucible-scheduled.yaml
- .github/workflows/faux-crucible-release-ci.yaml
- .github/workflows/faux-crucible-ci.yaml
- .github/workflows/faux-ci.yaml
- .github/workflows/crucible-release.yaml
- 'docs/**'
- 'spec/**'

jobs:
crucible-release-ci-complete:
runs-on: [ self-hosted, workflow-overhead ]
steps:
- run: echo "faux-crucible-release-ci-complete"

0 comments on commit 0e80920

Please sign in to comment.