feat: SDK Automatic Push Behavior Integration (rel/0.3.0) #433
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: build-ios | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - master | |
| - 'feat/**' | |
| - 'rel/**' | |
| jobs: | |
| build-ios: | |
| runs-on: macos-15 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: subosito/flutter-action@v2 | |
| with: | |
| flutter-version: 3.38.7 | |
| cache: true | |
| - name: Install dependencies | |
| run: | | |
| flutter pub get | |
| cd example && flutter pub get | |
| - name: Create dummy Firebase config for CI | |
| run: | | |
| cat > example/ios/Runner/GoogleService-Info.plist << 'EOF' | |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd"> | |
| <plist version="1.0"> | |
| <dict> | |
| <key>CLIENT_ID</key> | |
| <string>123456789000-abcdefghijklmnopqrstuvwxyz123456.apps.googleusercontent.com</string> | |
| <key>REVERSED_CLIENT_ID</key> | |
| <string>com.googleusercontent.apps.123456789000-abcdefghijklmnopqrstuvwxyz123456</string> | |
| <key>API_KEY</key> | |
| <string>AIzaSyDummyKeyForCIBuildOnly1234567890123</string> | |
| <key>GCM_SENDER_ID</key> | |
| <string>123456789000</string> | |
| <key>PLIST_VERSION</key> | |
| <string>1</string> | |
| <key>BUNDLE_ID</key> | |
| <string>com.klaviyo.flutterexample</string> | |
| <key>PROJECT_ID</key> | |
| <string>klaviyo-flutter-sdk-example-ci</string> | |
| <key>STORAGE_BUCKET</key> | |
| <string>klaviyo-flutter-sdk-example-ci.appspot.com</string> | |
| <key>IS_ADS_ENABLED</key> | |
| <false/> | |
| <key>IS_ANALYTICS_ENABLED</key> | |
| <false/> | |
| <key>IS_APPINVITE_ENABLED</key> | |
| <false/> | |
| <key>IS_GCM_ENABLED</key> | |
| <true/> | |
| <key>IS_SIGNIN_ENABLED</key> | |
| <true/> | |
| <key>GOOGLE_APP_ID</key> | |
| <string>1:123456789000:ios:abc123def456ci</string> | |
| </dict> | |
| </plist> | |
| EOF | |
| - name: Install CocoaPods dependencies | |
| run: | | |
| cd example/ios | |
| pod install | |
| - name: Build iOS (no codesigning) | |
| run: | | |
| cd example | |
| flutter build ios --no-codesign --debug | |
| - name: Verify build completion | |
| run: | | |
| if [ ! -d example/build/ios/iphoneos/Runner.app ]; then | |
| echo "iOS build failed" | |
| exit 1 | |
| fi | |
| echo "iOS build successful" |