File tree Expand file tree Collapse file tree 2 files changed +20
-12
lines changed
Expand file tree Collapse file tree 2 files changed +20
-12
lines changed Original file line number Diff line number Diff line change 1717 options :
1818 - push
1919 - schedule
20+ schedule :
21+ - cron : ' 30 13 * * 0' # 13:30 UTC on Sundays
2022
2123jobs :
2224 prepare :
25+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
2326 runs-on : ubuntu-latest
2427 outputs :
2528 LLVM_VERSION : ${{steps.get-parameters.outputs.LLVM_VERSION}}
2932 with :
3033 workflow : build.yml
3134 workflow_conclusion : success
32- commit : ${{inputs.commit}}
33- branch : ${{inputs.commit == '' && inputs.branch || ''}}
34- event : ${{inputs.pipeline_type}}
35+ commit : ${{github.event_name != 'schedule' && inputs.commit || '' }}
36+ branch : ${{github.event_name == 'schedule' && 'master' || ( inputs.commit == '' && inputs.branch || '') }}
37+ event : ${{github.event_name == 'schedule' && 'schedule' || inputs.pipeline_type}}
3538 name : parameters
3639 - name : Get build parameters
3740 id : get-parameters
4043 cat $GITHUB_OUTPUT
4144
4245 test-libcxx :
46+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
4347 needs : [prepare]
4448 strategy :
4549 fail-fast : false
5963 with :
6064 workflow : build.yml
6165 workflow_conclusion : success
62- commit : ${{inputs.commit}}
63- branch : ${{inputs.commit == '' && inputs.branch || ''}}
64- event : ${{inputs.pipeline_type}}
66+ commit : ${{github.event_name != 'schedule' && inputs.commit || '' }}
67+ branch : ${{github.event_name == 'schedule' && 'master' || ( inputs.commit == '' && inputs.branch || '') }}
68+ event : ${{github.event_name == 'schedule' && 'schedule' || inputs.pipeline_type}}
6569 name : windows-ucrt-${{matrix.arch}}-toolchain
6670 - name : Unpack toolchain
6771 run : |
Original file line number Diff line number Diff line change 1717 options :
1818 - push
1919 - schedule
20+ schedule :
21+ - cron : ' 30 13 * * 0' # 13:30 UTC on Sundays
2022
2123jobs :
2224 prepare :
25+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
2326 runs-on : ubuntu-latest
2427 outputs :
2528 LLVM_VERSION : ${{steps.get-parameters.outputs.LLVM_VERSION}}
2932 with :
3033 workflow : build.yml
3134 workflow_conclusion : success
32- commit : ${{inputs.commit}}
33- branch : ${{inputs.commit == '' && inputs.branch || ''}}
34- event : ${{inputs.pipeline_type}}
35+ commit : ${{github.event_name != 'schedule' && inputs.commit || '' }}
36+ branch : ${{github.event_name == 'schedule' && 'master' || ( inputs.commit == '' && inputs.branch || '') }}
37+ event : ${{github.event_name == 'schedule' && 'schedule' || inputs.pipeline_type}}
3538 name : parameters
3639 - name : Get build parameters
3740 id : get-parameters
4043 cat $GITHUB_OUTPUT
4144
4245 test-llvm :
46+ if : (github.event_name != 'schedule') || (github.repository == 'mstorsjo/llvm-mingw')
4347 needs : [prepare]
4448 strategy :
4549 fail-fast : false
5761 with :
5862 workflow : build.yml
5963 workflow_conclusion : success
60- commit : ${{inputs.commit}}
61- branch : ${{inputs.commit == '' && inputs.branch || ''}}
62- event : ${{inputs.pipeline_type}}
64+ commit : ${{github.event_name != 'schedule' && inputs.commit || '' }}
65+ branch : ${{github.event_name == 'schedule' && 'master' || ( inputs.commit == '' && inputs.branch || '') }}
66+ event : ${{github.event_name == 'schedule' && 'schedule' || inputs.pipeline_type}}
6367 name : windows-ucrt-${{matrix.arch}}-toolchain
6468 - name : Unpack toolchain
6569 run : |
You can’t perform that action at this time.
0 commit comments