-
Notifications
You must be signed in to change notification settings - Fork 4
137 lines (133 loc) · 4.38 KB
/
build.yml
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
workflow_call:
env:
KEY_PROPERTIES_PATH: "android/key.properties"
jobs:
lint:
runs-on: ubuntu-latest
if: "github.actor != 'github-actions[bot]'"
container:
image: ghcr.io/iyox-studios/flutter_rust
volumes:
- ${{ GITHUB.WORKSPACE }}:/root/wormhole
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache rust build
id: cache-rust
uses: actions/cache@v4
with:
path: native/target
key: ${{ runner.os }}-build-cache-rust-${{ hashFiles('native/Cargo.lock') }}
restore-keys: ${{ runner.os }}-build-cache-rust-
- name: Cache flutter build
id: cache-flutter
uses: actions/cache@v4
with:
path: build
key: ${{ runner.os }}-build-cache-flutter-${{ hashFiles('pubspec.lock') }}
restore-keys: ${{ runner.os }}-build-cache-flutter-
- name: Lint
run: |
make lint
build_android:
name: Build Android
needs: lint
runs-on: ubuntu-latest
container:
image: ghcr.io/iyox-studios/flutter_rust
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache rust build
id: cache-rust
uses: actions/cache@v4
with:
path: native/target
key: ${{ runner.os }}-build-cache-rust-${{ hashFiles('native/Cargo.lock') }}
restore-keys: ${{ runner.os }}-build-cache-rust-
- name: Cache flutter build
id: cache-flutter
uses: actions/cache@v4
with:
path: build
key: ${{ runner.os }}-build-cache-flutter-${{ hashFiles('pubspec.lock') }}
restore-keys: ${{ runner.os }}-build-cache-flutter-
- name: Create Keystore
run: |
echo keyPassword="${{ secrets.KEY_STORE_PASSWORD }}" > ${{ env.KEY_PROPERTIES_PATH}}
echo storePassword="${{ secrets.KEY_PASSWORD }}" >> ${{env.KEY_PROPERTIES_PATH}}
echo keyAlias="${{ secrets.KEY_ALIAS }}" >> ${{env.KEY_PROPERTIES_PATH}}
echo storeFile="./keystore.jks" >> ${{env.KEY_PROPERTIES_PATH}}
echo "${{ secrets.KEY_STORE }}" | base64 --decode > android/keystore.jks
echo "${{ secrets.KEY_STORE }}" | base64 --decode > android/app/keystore.jks
- name: Build Android
run: |
make get-dep
make apk
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app-armeabi-v7a-release.apk
retention-days: 5
path: build/app/outputs/flutter-apk/app-armeabi-v7a-release.apk
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app-arm64-v8a-release.apk
retention-days: 5
path: build/app/outputs/flutter-apk/app-arm64-v8a-release.apk
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app-x86_64-release.apk
retention-days: 5
path: build/app/outputs/flutter-apk/app-x86_64-release.apk
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: app-release.aab
retention-days: 5
path: build/app/outputs/bundle/release/app-release.aab
build_linux:
name: Build Linux
needs: lint
runs-on: ubuntu-latest
container:
image: ghcr.io/iyox-studios/flutter_rust
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Cache rust build
id: cache-rust
uses: actions/cache@v4
with:
path: native/target
key: ${{ runner.os }}-build-cache-rust-${{ hashFiles('native/Cargo.lock') }}
restore-keys: ${{ runner.os }}-build-cache-rust-
- name: Cache flutter build
id: cache-flutter
uses: actions/cache@v4
with:
path: build
key: ${{ runner.os }}-build-cache-flutter-${{ hashFiles('pubspec.lock') }}
restore-keys: ${{ runner.os }}-build-cache-flutter-
- name: Build Linux
run: |
export HOME=/root/
make get-dep
make linux
cp -r build/linux/x64/release/bundle/ linux-x86_64
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: linux-x86_64
retention-days: 5
path: |
linux-x86_64