-
Notifications
You must be signed in to change notification settings - Fork 759
61 lines (59 loc) · 1.67 KB
/
controller.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
name: controller
on: [push, pull_request]
jobs:
hwsapibot:
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}
uses: ./.github/workflows/hwsapibot.yml
secrets: inherit
codeql:
needs: hwsapibot
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/codeql-analysis.yml
tools:
needs: hwsapibot
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/tools.yml
build:
needs: tools
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/build.yml
clang15_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/clang15_test.yml
gcc_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gcc_test.yml
gccold1:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccold1.yml
gccold2:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccold2.yml
gccsnapshot_test:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/gccsnapshot_test.yml
mariadb:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mariadb.yml
mysql:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/mysql.yml
macos_latest:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/macos_latest.yml
macos_m1:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/macos_m1.yml
windows:
needs: build
if: ${{ !failure() && !cancelled() }}
uses: ./.github/workflows/windows.yml