-
Notifications
You must be signed in to change notification settings - Fork 26
52 lines (47 loc) · 1.43 KB
/
samples_build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
name: Samples Build
on:
workflow_dispatch: {}
push:
paths:
- .github/workflows/samples_build.yaml
- forui/**
- samples/**
jobs:
build-android:
name: Build Android
runs-on: ubuntu-latest
defaults:
run:
working-directory: samples
steps:
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 17
- 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: 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