-
Notifications
You must be signed in to change notification settings - Fork 762
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
make pull_requests also use "controller" workflow
for reasons unknown, the controller workflow was only used by pushes, while all workflows were triggered separately for pull requests. now both pushes and pull requests follow the same CI flow, with some specifics for pushes being handled with ifs
- Loading branch information
1 parent
c1ef569
commit e0de07d
Showing
12 changed files
with
12 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: build | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: clang15_test | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: "CodeQL" | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
jobs: | ||
analyze: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
name: controller | ||
|
||
on: | ||
push: | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
hwsapibot: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: gcc_test | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: gcc_old1 | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: gcc_old2 | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: gcc_old3 | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: gccsnapshot_test | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: mariadb | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: mysql | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
name: tools | ||
|
||
on: [workflow_call, pull_request] | ||
on: workflow_call | ||
|
||
env: | ||
MYSQL_DATABASE: 'ragnarok' | ||
|