@@ -45,10 +45,88 @@ jobs:
4545 refs : ${{ inputs.wolfssl_refs || '' }}
4646 stable_count : 2
4747
48+ # Every target the repo has, in ONE run. They used to carry their own crons,
49+ # which meant 13 runs a night and therefore 13 triage writers racing on the
50+ # same issue bodies -- and 12 of them were never triaged at all.
51+ #
52+ # The job name here is the triage unit: it prefixes every job the called
53+ # workflow produces ("esp32 / Build / ..."), and becomes the ci:<name> label.
4854 host :
4955 name : Host
5056 needs : [refs]
5157 uses : ./.github/workflows/examples.yml
5258 with :
5359 wolfssl_refs : ${{ needs.refs.outputs.refs }}
5460 caller_run_id : ${{ github.run_id }}
61+
62+ esp32 :
63+ needs : [refs]
64+ uses : ./.github/workflows/esp32.yml
65+ with :
66+ caller_run_id : ${{ github.run_id }}
67+
68+ android :
69+ needs : [refs]
70+ uses : ./.github/workflows/android.yml
71+ with :
72+ caller_run_id : ${{ github.run_id }}
73+
74+ rt1060 :
75+ needs : [refs]
76+ uses : ./.github/workflows/rt1060.yml
77+ with :
78+ caller_run_id : ${{ github.run_id }}
79+
80+ uefi :
81+ needs : [refs]
82+ uses : ./.github/workflows/uefi.yml
83+ with :
84+ caller_run_id : ${{ github.run_id }}
85+
86+ puf :
87+ needs : [refs]
88+ uses : ./.github/workflows/puf.yml
89+ with :
90+ caller_run_id : ${{ github.run_id }}
91+
92+ rpi-pico :
93+ needs : [refs]
94+ uses : ./.github/workflows/rpi-pico.yml
95+ with :
96+ caller_run_id : ${{ github.run_id }}
97+
98+ ebpf :
99+ needs : [refs]
100+ uses : ./.github/workflows/ebpf.yml
101+ with :
102+ caller_run_id : ${{ github.run_id }}
103+
104+ fullstack :
105+ needs : [refs]
106+ uses : ./.github/workflows/fullstack.yml
107+ with :
108+ caller_run_id : ${{ github.run_id }}
109+
110+ java :
111+ needs : [refs]
112+ uses : ./.github/workflows/java.yml
113+ with :
114+ caller_run_id : ${{ github.run_id }}
115+
116+ cmake :
117+ needs : [refs]
118+ uses : ./.github/workflows/cmake.yml
119+ with :
120+ caller_run_id : ${{ github.run_id }}
121+
122+ csharp :
123+ needs : [refs]
124+ uses : ./.github/workflows/csharp.yml
125+ with :
126+ caller_run_id : ${{ github.run_id }}
127+
128+ emulated :
129+ needs : [refs]
130+ uses : ./.github/workflows/emulated.yml
131+ with :
132+ caller_run_id : ${{ github.run_id }}
0 commit comments