-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
21 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -29,4 +29,24 @@ jobs: | |
- run: flutter pub run build_runner build --delete-conflicting-outputs | ||
- run: flutter analyze | ||
- run: flutter test | ||
- run: flutter build appbundle --debug --no-pub --no-tree-shake-icons | ||
- run: flutter build appbundle --debug --no-pub --no-tree-shake-icons | ||
|
||
build-ios: | ||
name: Build iOS | ||
runs-on: macos-14 # TODO: macos-latest still points to MacOS 12 which doesn't support XCode 15, https://github.blog/changelog/2024-01-30-github-actions-macos-14-sonoma-is-now-available/ | ||
defaults: | ||
run: | ||
working-directory: samples | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: subosito/[email protected] | ||
with: | ||
cache: true | ||
|
||
- run: flutter pub get | ||
- run: flutter pub run build_runner build --delete-conflicting-outputs | ||
- run: flutter analyze | ||
- run: flutter test | ||
- run: pod repo update | ||
working-directory: samples/ios | ||
- run: flutter build ios --debug --no-codesign --no-pub --flavor development --dart-define=DEVELOPMENT |