Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: create platform-specific boilerplate in build workflow #368

Merged
merged 1 commit into from
Dec 14, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,9 @@ jobs:
echo Copied file!
rm -rf target/ platform-build/ # free up some space on the runner

- name: Create Windows boilerplate
run: flutter create . --platforms=windows
working-directory: packages/flutter_mimir/example
- name: Run Flutter integration tests
working-directory: packages/flutter_mimir/example
run: flutter test -d windows integration_test
Expand Down Expand Up @@ -120,6 +123,9 @@ jobs:
echo Copied file!
rm -rf target/ platform-build/ # free up some space on the runner

- name: Create Linux boilerplate
run: flutter create . --platforms=linux
working-directory: packages/flutter_mimir/example
- name: Run Flutter integration tests
working-directory: packages/flutter_mimir/example
run: flutter test -d linux integration_test
Expand Down Expand Up @@ -180,6 +186,9 @@ jobs:
echo Copied file!
rm -rf target/ platform-build/ # free up some space on the runner

- name: Create Android boilerplate
run: flutter create . --platforms=android
working-directory: packages/flutter_mimir/example
- name: Run Flutter integration tests
uses: Wandalen/[email protected] # sometimes android tests are flaky
with:
Expand Down
13 changes: 0 additions & 13 deletions packages/flutter_mimir/example/android/.gitignore

This file was deleted.

71 changes: 0 additions & 71 deletions packages/flutter_mimir/example/android/app/build.gradle

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

This file was deleted.

This file was deleted.

31 changes: 0 additions & 31 deletions packages/flutter_mimir/example/android/build.gradle

This file was deleted.

3 changes: 0 additions & 3 deletions packages/flutter_mimir/example/android/gradle.properties

This file was deleted.

This file was deleted.

11 changes: 0 additions & 11 deletions packages/flutter_mimir/example/android/settings.gradle

This file was deleted.

1 change: 0 additions & 1 deletion packages/flutter_mimir/example/linux/.gitignore

This file was deleted.

Loading
Loading