-
Notifications
You must be signed in to change notification settings - Fork 0
272 lines (249 loc) · 8.38 KB
/
template_configuration.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
name: Template configuration for KMM project
on:
workflow_dispatch:
inputs:
package_name:
description: 'Input package name for project'
required: true
type: string
default: 'none'
ui:
description: 'Select UI configuration'
required: true
default: 'compose'
type: choice
options:
- compose
- compose_swift_ui
di:
description: 'Select Di framework'
required: false
type: choice
default: 'none'
options:
- none
- koin
networking:
description: 'Select Networking framework'
required: false
type: choice
default: 'none'
options:
- none
- ktor
- graphql
navigation:
description: 'Select Navigation framework'
required: false
type: choice
default: 'none'
options:
- none
- compose_navigation
- voyager_navigation
view_model:
description: 'Select ViewModel implementation'
required: false
type: choice
default: 'none'
options:
- none
- decompose
- view_model
- voyager_screen_model
local_storage:
description: 'Select framework for local storage'
required: false
type: choice
default: 'none'
options:
- none
- sql_delight
- realm
local_preferences:
description: 'Select framework for local preferences'
required: false
type: choice
default: 'none'
options:
- none
- multiplatform_settings
linter:
description: 'Select static analysis tool'
required: false
type: choice
default: 'none'
options:
- none
- detekt
jobs:
template_generation:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
ref: master
- name: Install latest Git
run: sudo apt-get update && sudo apt-get install -y git
- name: Making scripts runnable
run: chmod +x scripts/*.sh
- name: Package name validation
run: |
scripts/package_name_validation.sh ${{ github.event.inputs.package_name }}
- name: Fetch all branches
run: git fetch --all
- name: Git configuration
run: |
git config user.name "GitHub Action"
git config user.email "[email protected]"
- name: Creating kmm_template branch
run: |
git checkout ${{ github.event.inputs.ui }}
git checkout -b kmm_template
- name: Merge UI branch
run: |
git merge -m "Merge message" master --allow-unrelated-histories || {
git add .
git commit -m "Fixed merge conflicts"
}
- name: Merge DI branch
if: github.event.inputs.di != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.di }}_swift_ui"
else
BRANCH="${{ github.event.inputs.di }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge Networking branch
if: github.event.inputs.networking != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.networking }}_swift_ui"
else
BRANCH="${{ github.event.inputs.networking }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge Navigation branch
if: github.event.inputs.navigation != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.navigation }}_swift_ui"
else
BRANCH="${{ github.event.inputs.navigation }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge View Model branch
if: github.event.inputs.view_model != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.view_model }}_swift_ui"
else
BRANCH="${{ github.event.inputs.view_model }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge Local Storage Branch
id: merge-branch-local-storage
if: github.event.inputs.local_storage != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.local_storage }}_swift_ui"
else
BRANCH="${{ github.event.inputs.local_storage }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge Local Preferences Branch
id: merge-branch
if: github.event.inputs.local_preferences != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.local_preferences }}_swift_ui"
else
BRANCH="${{ github.event.inputs.local_preferences }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Merge Linter Branch
if: github.event.inputs.linter != 'none'
run: |
if [[ "${{ github.event.inputs.ui }}" == "compose_swift_ui" ]]; then
BRANCH="${{ github.event.inputs.linter }}_swift_ui"
else
BRANCH="${{ github.event.inputs.linter }}"
fi
git merge origin/$BRANCH || {
scripts/fix_conflicts.sh
git add .
git commit -m "Fixed merge conflicts"
}
continue-on-error: true
- name: Rename project package
if: github.event.inputs.package_name != 'none'
run: |
echo "${{ github.event.inputs.package_name }}"
echo 's/co.daresay.kmmtemplate/${{ github.event.inputs.package_name }}/g'
echo 's/co.daresay.kmmtemplate/"${{ github.event.inputs.package_name }}/g"'
ls
pwd
./scripts/rename_package.sh ${{ github.event.inputs.package_name }}
- name: Removing unnecessary files and folders
run: |
rm -rf ./git
rm -rf ./github
rm -rf scripts
- name: Specify name of repository
id: repository_name
run: |
UI="${{ github.event.inputs.ui }}"
DI="${{ github.event.inputs.di }}"
NETWORKING="${{ github.event.inputs.networking }}"
NAVIGATION="${{ github.event.inputs.navigation }}"
VIEW_MODEL="${{ github.event.inputs.view_model }}"
LOCAL_STORAGE="${{ github.event.inputs.local_storage }}"
LOCAL_PREFERENCES="${{ github.event.inputs.local_preferences }}"
LINTER="${{ github.event.inputs.linter }}"
NAME=""
for item in "$UI" "$DI" "$NETWORKING" "$NAVIGATION" "$VIEW_MODEL" "$LOCAL_STORAGE" "$LOCAL_PREFERENCES" "$LINTER"; do
if [ "$item" != "none" ]; then
[ -n "$NAME" ] && NAME="${NAME}_"
NAME="${NAME}${item}"
fi
done
echo "repository_name=$NAME" >> $GITHUB_OUTPUT
- name: Upload project artifact
uses: actions/upload-artifact@v4
with:
name: "template_with_${{ steps.repository_name.outputs.repository_name }}"
path: .
retention-days: 1