File tree Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Expand file tree Collapse file tree 1 file changed +35
-1
lines changed Original file line number Diff line number Diff line change 1
1
name : Build clang runtime builtins
2
+
2
3
on :
3
4
workflow_dispatch :
5
+ inputs :
6
+ target_sdk_branch :
7
+ type : string
8
+ required : false
9
+ default : ' master'
10
+ create_pr :
11
+ type : boolean
12
+ required : false
13
+ default : false
14
+
4
15
# TODO: remove this next line before merging!
5
16
push :
6
17
22
33
- uses : actions/checkout@v4
23
34
with :
24
35
# TODO: remove this next line before merging!
25
- ref : feat/apa/clangrt
36
+ ref : feat/regain_control_over_libs
26
37
sparse-checkout : |
27
38
tools/build_clangrt_builtins.sh
28
39
sparse-checkout-cone-mode : false
43
54
name : arch
44
55
pattern : arch-*
45
56
delete-merged : true
57
+
58
+ pr_create :
59
+ needs : merge
60
+ runs-on : ubuntu-latest
61
+ name : " Pull Request Create"
62
+ if : ${{ success() && inputs.create_pr }}
63
+ continue-on-error : true
64
+ steps :
65
+ - name : Clone repository
66
+ uses : actions/checkout@v4
67
+ with :
68
+ # by default the action uses fetch-depth = 1, which creates
69
+ # shallow repositories from which we can't push
70
+ fetch-depth : 0
71
+ ref : ${{ inputs.target_sdk_branch }}
72
+
73
+ - name : Download Binaries artifact
74
+ uses : actions/download-artifact@v4
75
+ with :
76
+ name : arch
77
+
78
+ - name : Print matrix
79
+ run : ls -l
You can’t perform that action at this time.
0 commit comments