forked from TextureGroup/Texture
-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbuild.sh
More file actions
executable file
·355 lines (287 loc) · 9.45 KB
/
build.sh
File metadata and controls
executable file
·355 lines (287 loc) · 9.45 KB
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
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
#!/bin/bash
# echo ************* diagnostics
# echo available devices
# instruments -s devices
# echo available sdk
# xcodebuild -showsdks
# echo available Xcode
# ls -ld /Applications/Xcode*
# echo ************* diagnostics end
# run this on a 2x device until we've updated snapshot images to 3x
PLATFORM="${TEXTURE_BUILD_PLATFORM:-platform=iOS Simulator,OS=26.2,name=iPhone 17}"
SDK="${TEXTURE_BUILD_SDK:-iphonesimulator26.2}"
DERIVED_DATA_PATH="~/ASDKDerivedData"
# It is pitch black.
set -e
function trap_handler {
echo -e "\n\nOh no! You walked directly into the slavering fangs of a lurking grue!"
echo "**** You have died ****"
exit 255
}
trap trap_handler INT TERM EXIT
# Derived data handling
eval [ ! -d $DERIVED_DATA_PATH ] && eval mkdir $DERIVED_DATA_PATH
function clean_derived_data {
eval find $DERIVED_DATA_PATH -mindepth 1 -delete
}
# Build example
function build_example {
example="$1"
clean_derived_data
if [ -f "${example}/Podfile" ]; then
echo "Using CocoaPods"
pod install --project-directory=$example
workspace=$(ls -d ${example}/*.xcworkspace)
filename=$(basename -- "$workspace")
scheme="${filename%.*}"
set -o pipefail && xcodebuild \
-workspace "${workspace}" \
-scheme "$scheme" \
-sdk "$SDK" \
-destination "$PLATFORM" \
-derivedDataPath "$DERIVED_DATA_PATH" \
build
elif [ -f "${example}/Cartfile" ]; then
echo "Using Carthage"
local_repo=`pwd`
current_branch=`git rev-parse --abbrev-ref HEAD`
cd $example
echo "git \"file://${local_repo}\" \"${current_branch}\"" > "Cartfile"
carthage update --no-use-binaries --no-build --platform iOS
carthage build --no-skip-current --use-xcframeworks
set -o pipefail && xcodebuild \
-project "Sample.xcodeproj" \
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build
cd ../..
fi
}
# Lint subspec
function lint_subspec {
set -o pipefail && pod env && pod lib lint --allow-warnings --subspec="$1"
}
function cleanup {
# remove all Pods directories
find . -name Pods -type d -exec rm -rf {} +
find . -name Podfile.lock -type f -delete
}
MODE="$1"
cleanup
case "$MODE" in
tests|all)
echo "Building & testing AsyncDisplayKit."
pod install
set -o pipefail && xcodebuild \
-workspace AsyncDisplayKit.xcworkspace \
-scheme AsyncDisplayKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test
success="1"
;;
tests_listkit)
echo "Building & testing AsyncDisplayKit+IGListKit."
pod install --project-directory=SubspecWorkspaces/ASDKListKit
set -o pipefail && xcodebuild \
-workspace SubspecWorkspaces/ASDKListKit/ASDKListKit.xcworkspace \
-scheme ASDKListKitTests \
-sdk "$SDK" \
-destination "$PLATFORM" \
build-for-testing test
success="1"
;;
examples|all)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in examples/*/; do
echo "Building (examples) $example."
build_example $example
done
success="1"
;;
examples-pt1)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples -type d -maxdepth 1 \( ! -iname ".*" \)) | head -6); do
echo "Building (examples-pt1) $example"
build_example $example
done
success="1"
;;
examples-pt2)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples -type d -maxdepth 1 \( ! -iname ".*" \)) | head -11 | tail -5); do
echo "Building (examples-pt2) $example"
build_example $example
done
success="1"
;;
examples-pt3)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples -type d -maxdepth 1 \( ! -iname ".*" \)) | head -16 | tail -5); do
echo "Building (examples-pt3) $example"
build_example $example
done
success="1"
;;
examples-pt4)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples -type d -maxdepth 1 \( ! -iname ".*" \)) | tail -n +17); do
echo "Building (examples-pt4) $example"
build_example $example
done
success="1"
;;
examples-extras)
echo "Verifying that all AsyncDisplayKit examples extras compile."
for example in $(find ./examples_extra -type d -maxdepth 1 \( ! -iname ".*" \)); do
echo "Building (examples-extra) $example"
build_example $example
done
success="1"
;;
examples-extra-pt1)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples_extra -type d -maxdepth 1 \( ! -iname ".*" \)) | head -6); do
echo "Building (examples-extra-pt1) $example"
build_example $example
done
success="1"
;;
examples-extra-pt2)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples_extra -type d -maxdepth 1 \( ! -iname ".*" \)) | head -11 | tail -5); do
echo "Building (examples-extra-pt2) $example"
build_example $example
done
success="1"
;;
examples-extra-pt3)
echo "Verifying that all AsyncDisplayKit examples compile."
for example in $((find ./examples_extra -type d -maxdepth 1 \( ! -iname ".*" \)) | tail -n +12); do
echo "Building (examples-extra-pt3) $example"
build_example $example
done
success="1"
;;
example)
# Support building a specific example: sh build.sh example examples/ASDKLayoutTransition
echo "Verifying $2 compiles."
build_example $2
success="1"
;;
life-without-cocoapods|all)
echo "Verifying that AsyncDisplayKit functions as a static library."
set -o pipefail && xcodebuild \
-workspace "smoke-tests/Life Without CocoaPods/Life Without CocoaPods.xcworkspace" \
-scheme "Life Without CocoaPods" \
-sdk "$SDK" \
-destination "$PLATFORM" \
build
success="1"
;;
framework|all)
echo "Verifying that AsyncDisplayKit functions as a dynamic framework (for Swift/Carthage users)."
set -o pipefail && xcodebuild \
-project "smoke-tests/Framework/Sample.xcodeproj" \
-scheme Sample \
-sdk "$SDK" \
-destination "$PLATFORM" \
build
success="1"
;;
cocoapods-lint|all)
echo "Verifying that podspec lints."
set -o pipefail && pod env && pod lib lint --allow-warnings
success="1"
;;
cocoapods-lint-default-subspecs)
echo "Verifying that default subspecs lint."
for subspec in 'Core' 'PINRemoteImage' 'Video' 'MapKit' 'AssetsLibrary' 'Photos'; do
echo "Verifying that $subspec subspec lints."
lint_subspec $subspec
done
success="1"
;;
cocoapods-lint-other-subspecs)
echo "Verifying that other subspecs lint."
for subspec in 'IGListKit' 'Yoga' 'TextNode2'; do
echo "Verifying that $subspec subspec lints."
lint_subspec $subspec
done
success="1"
;;
carthage|all)
echo "Verifying carthage works."
set -o pipefail && carthage update --no-use-binaries --no-build && carthage build --no-skip-current --use-xcframeworks
success="1"
;;
spm|all)
echo "Verifying Swift Package Manager works."
# Generate SPM symlinks
echo "Generating SPM layout..."
swift scripts/generate_spm_sources_layout.swift
# Build with default traits
echo "Building with default traits..."
set -o pipefail && xcodebuild \
-scheme AsyncDisplayKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
clean build
success="1"
;;
spm-texture-basic)
echo "Testing SPMBasic example (verifying committed SPM layout)."
# DO NOT regenerate - test that committed spm/Sources is valid
echo "Using committed SPM layout (no regeneration)..."
# Test SPMBasic example (build and test)
echo "Building and testing SPMBasic example..."
cd examples/SPMBasic
set -o pipefail && xcodebuild \
-scheme SPMBasic \
-sdk "$SDK" \
-destination "$PLATFORM" \
clean build test
cd ../..
success="1"
;;
spm-texture-iglistkit)
echo "Testing SPMWithIGListKit example (testing SPM generation script)."
# Clean and regenerate to verify generation script works
echo "Cleaning generated SPM directory..."
rm -rf spm/Sources
echo "Generating SPM layout from scratch..."
swift scripts/generate_spm_sources_layout.swift
# Test SPMWithIGListKit example (build and test)
echo "Building and testing SPMWithIGListKit example..."
cd examples/SPMWithIGListKit
set -o pipefail && xcodebuild \
-scheme SPMWithIGListKit \
-sdk "$SDK" \
-destination "$PLATFORM" \
clean build test
cd ../..
success="1"
;;
spm-app-iglistkit)
echo "Testing ASIGListKitSPM iOS app example (local package wrapper approach)."
# DO NOT regenerate - reuse SPM layout from previous tests
# Test ASIGListKitSPM iOS app example (build only)
echo "Building ASIGListKitSPM iOS app example..."
cd examples/ASIGListKitSPM
set -o pipefail && xcodebuild \
-scheme ASIGListKitSPM \
-sdk "$SDK" \
-destination "$PLATFORM" \
clean build
cd ../..
success="1"
;;
*)
echo "Unrecognized mode '$MODE'."
;;
esac
if [ "$success" = "1" ]; then
trap - EXIT
exit 0
fi