@@ -96,29 +96,29 @@ jobs:
9696
9797 if [ "${{ matrix.platform }}" = "macOS" ]; then
9898 echo "Building universal macOS binary (version will be detected as: $VERSION)..."
99-
99+
100100 # Build ARM64 binary
101101 echo "Building ARM64 binary..."
102102 swift build --configuration release --arch arm64 -Xswiftc -Osize
103-
103+
104104 # Build x86_64 binary
105105 echo "Building x86_64 binary..."
106106 swift build --configuration release --arch x86_64 -Xswiftc -Osize
107-
107+
108108 # Create output directory
109109 mkdir -p .build/apple/Products/Release
110-
110+
111111 # Combine architectures with lipo
112112 echo "Combining architectures with lipo..."
113113 lipo -create \
114114 .build/arm64-apple-macosx/release/swift-dependency-audit \
115115 .build/x86_64-apple-macosx/release/swift-dependency-audit \
116116 -output .build/apple/Products/Release/swift-dependency-audit
117-
117+
118118 # Verify the universal binary
119119 echo "Verifying universal binary..."
120120 lipo -info .build/apple/Products/Release/swift-dependency-audit
121-
121+
122122 # Strip the final binary
123123 strip -rSTx .build/apple/Products/Release/swift-dependency-audit
124124 else
@@ -167,13 +167,6 @@ jobs:
167167 echo "=== Testing Custom Whitelist ==="
168168 $BINARY_PATH . --whitelist "Foundation,SwiftUI,ArgumentParser" --verbose --exclude-tests
169169
170- echo "=== Testing Plugin Integration ==="
171- if swift package plugin --list | grep -q "DependencyAuditPlugin"; then
172- echo "✅ Plugin is properly registered"
173- else
174- echo "⚠️ Plugin not found in list, but core functionality works"
175- fi
176-
177170 - name : Upload build artifacts
178171 uses : actions/upload-artifact@v4
179172 with :
0 commit comments