Skip to content

Commit 9314734

Browse files
committed
Make version scripts properly abort on error
1 parent a60cd40 commit 9314734

File tree

4 files changed

+20
-11
lines changed

4 files changed

+20
-11
lines changed

Tests/SwiftUIKitTests/Bundle/Bundle+InformationTests.swift

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ final class Bundle_InformationTests: XCTestCase {
2020
}
2121
}
2222

23-
private class MyBundle: Bundle {
23+
private class MyBundle: Bundle, @unchecked Sendable {
2424

2525
override var infoDictionary: [String: Any]? {
2626
[
27-
String(kCFBundleVersionKey): "123",
27+
String(kCFBundleVersionKey): "1234",
2828
"CFBundleDisplayName": "SwiftUIKit Tests",
2929
"CFBundleShortVersionString": "1.2.3"
3030
]

scripts/test.sh

+9-3
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ test_platform() {
4040

4141
# Define a local $PLATFORM variable
4242
local PLATFORM="${1//_/ }"
43-
43+
4444
# Define the destination, based on the $PLATFORM
4545
case $PLATFORM in
4646
"iOS")
@@ -66,10 +66,16 @@ test_platform() {
6666

6767
# Test $TARGET for the $DESTINATION
6868
echo "Testing $TARGET for $PLATFORM..."
69-
xcodebuild test -scheme $TARGET -derivedDataPath .build -destination "$DESTINATION" -enableCodeCoverage YES;
69+
xcodebuild test -scheme $TARGET -derivedDataPath .build -destination "$DESTINATION" -enableCodeCoverage YES
70+
local TEST_RESULT=$?
71+
72+
if [[ $TEST_RESULT -ne 0 ]]; then
73+
return $TEST_RESULT
74+
fi
7075

7176
# Complete successfully
7277
echo "Successfully tested $TARGET for $PLATFORM"
78+
return 0
7379
}
7480

7581
# Loop through all platforms and call the test function
@@ -82,4 +88,4 @@ done
8288
# Complete successfully
8389
echo ""
8490
echo "Testing $TARGET completed successfully!"
85-
echo ""
91+
echo ""

scripts/version_validate_git.sh

+5-5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ fi
2626
# Create local argument variables.
2727
BRANCH=$1
2828

29+
# Start script
30+
echo ""
31+
echo "Validating git repository..."
32+
echo ""
33+
2934
# Check if the current directory is a Git repository
3035
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
3136
echo "Error: Not a Git repository"
@@ -38,11 +43,6 @@ if [ -n "$(git status --porcelain)" ]; then
3843
exit 1
3944
fi
4045

41-
# Start script
42-
echo ""
43-
echo "Validating git repository..."
44-
echo ""
45-
4646
# Verify that we're on the correct branch
4747
current_branch=$(git rev-parse --abbrev-ref HEAD)
4848
if [ "$current_branch" != "$BRANCH" ]; then

scripts/version_validate_target.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,10 @@ echo ""
6363

6464
# Run SwiftLint
6565
echo "Running SwiftLint"
66-
swiftlint
66+
if ! swiftlint --strict; then
67+
echo "Error: SwiftLint failed"
68+
exit 1
69+
fi
6770

6871
# Run unit tests
6972
echo "Testing..."

0 commit comments

Comments
 (0)