-
Notifications
You must be signed in to change notification settings - Fork 3
224 lines (196 loc) · 7.16 KB
/
ci.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
---
name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- master
env:
FLUTTER_VERSION: 3.24.0
jobs:
linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Flutter version
run: flutter --version
- name: Dart format
run: dart format --set-exit-if-changed .
- name: Flutter analyze
run: flutter analyze
testing:
name: Testing
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Flutter version
run: flutter --version
- name: Flutter test
run: flutter test -r expanded
integration-ios:
name: Integration Testing - iOS
runs-on: macos-13
steps:
- name: "List all simulators"
run: "xcrun xctrace list devices"
- name: "Start Simulator"
env:
DEVICE: ${{ vars.IOS_SIMULATOR }}
run: |
UDID=$(xcrun xctrace list devices | grep "^$DEVICE (" | awk '{gsub(/[()]/,""); print $NF}')
echo $UDID
xcrun simctl boot "${UDID:?No Simulator with this name found}"
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Cache build files
uses: irgaly/xcode-cache@v1
with:
key: build-pubspec-${{ runner.os }}-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
build-pubspec-${{ runner.os }}
- name: Install Flutter dependencies
run: flutter pub get
- name: Run integration tests
run: |
flutter drive --driver=test_driver/integration_test.dart --target=integration_test/main.dart
- name: Upload Artifact
if: always()
uses: actions/upload-artifact@v4
with:
name: screenshots
path: screenshots
deploy-ios:
name: Deploy - iOS
needs: [linting, testing]
# Don't try multiple builds concurrently,
# because build numbers would conflict.
concurrency: deploy-ios
if: | # Don't deploy on draft PRs
github.event_name == 'workflow_dispatch'
|| (github.event_name == 'push' && github.ref == 'refs/heads/master')
|| (github.event_name == 'pull_request' && !github.event.pull_request.draft)
runs-on: macos-13
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Cache build files
uses: irgaly/xcode-cache@v1
with:
key: build-pubspec-${{ runner.os }}-${{ hashFiles('**/pubspec.lock') }}
restore-keys: |
build-pubspec-${{ runner.os }}
- name: Flutter version
run: flutter --version
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.3.4
- name: Decode secrets
env:
APPLE_API_KEY: ${{ secrets.APPLE_API_KEY }}
run: |
echo $APPLE_API_KEY | base64 --decode > $GITHUB_WORKSPACE/app-store.p8
- name: Build app
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
MATCH_GIT_PRIVATE_KEY: ${{ secrets.PASSWORDS_REPO_DEPLOY_KEY }}
THALIA_OAUTH_APP_ID: ${{ secrets.THALIA_OAUTH_APP_ID }}
THALIA_OAUTH_APP_SECRET: ${{ secrets.THALIA_OAUTH_APP_SECRET }}
TOSTI_API_HOST: ${{ vars.TOSTI_API_HOST }}
TOSTI_OAUTH_APP_ID: ${{ secrets.TOSTI_OAUTH_APP_ID }}
TOSTI_OAUTH_APP_SECRET: ${{ secrets.TOSTI_OAUTH_APP_SECRET }}
CHANGELOG: ${{ github.ref }}
run: bundle exec fastlane ios deploy_internal changelog:"$CHANGELOG"
deploy-android:
name: Deploy - Android
needs: [linting, testing]
# Don't try multiple builds concurrently,
# because build numbers would conflict.
concurrency: deploy-android
if: | # Don't deploy on draft PRs
github.event_name == 'workflow_dispatch'
|| (github.event_name == 'push' && github.ref == 'refs/heads/master')
|| (github.event_name == 'pull_request' && !github.event.pull_request.draft)
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Checkout passwords repo
uses: actions/checkout@v3
with:
repository: svthalia/ThaliApp-passwords
path: thaliapp-passwords
ssh-key: ${{ secrets.PASSWORDS_REPO_DEPLOY_KEY }}
- name: Decode secrets
env:
GOOGLE_PLAY_CONFIG: ${{ secrets.GOOGLE_PLAY_CONFIG_JSON }}
RELEASE_CONFIG_STORE_PASS: ${{ secrets.ANDROID_RELEASE_CONFIG_STORE_PASS }}
RELEASE_CONFIG_KEY_PASS: ${{ secrets.ANDROID_RELEASE_CONFIG_KEY_PASS }}
RELEASE_CONFIG_KEY_ALIAS: ${{ vars.ANDROID_RELEASE_CONFIG_KEY_ALIAS }}
run: |
echo $GOOGLE_PLAY_CONFIG > $GITHUB_WORKSPACE/google-play.json
echo "storeFile=$GITHUB_WORKSPACE/thaliapp-passwords/upload.keystore" > $GITHUB_WORKSPACE/android/key.properties
echo "storePassword=$RELEASE_CONFIG_STORE_PASS" >> $GITHUB_WORKSPACE/android/key.properties
echo "keyPassword=$RELEASE_CONFIG_KEY_PASS" >> $GITHUB_WORKSPACE/android/key.properties
echo "keyAlias=$RELEASE_CONFIG_KEY_ALIAS" >> $GITHUB_WORKSPACE/android/key.properties
- name: Setup JDK 17
uses: actions/setup-java@v3
with:
java-version: 17
distribution: zulu
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
flutter-version: ${{ env.FLUTTER_VERSION }}
cache: true
- name: Flutter version
run: flutter --version
- name: Setup Ruby
uses: ruby/setup-ruby@v1
with:
bundler-cache: true
ruby-version: 3.3.4
- name: Gradle cache
uses: actions/cache@v3
with:
path: ~/.gradle/caches
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Build app
env:
SENTRY_DSN: ${{ secrets.SENTRY_DSN }}
THALIA_OAUTH_APP_ID: ${{ secrets.THALIA_OAUTH_APP_ID }}
THALIA_OAUTH_APP_SECRET: ${{ secrets.THALIA_OAUTH_APP_SECRET }}
TOSTI_API_HOST: ${{ vars.TOSTI_API_HOST }}
TOSTI_OAUTH_APP_ID: ${{ secrets.TOSTI_OAUTH_APP_ID }}
TOSTI_OAUTH_APP_SECRET: ${{ secrets.TOSTI_OAUTH_APP_SECRET }}
SUPPLY_UPLOAD_MAX_RETRIES: ${{ vars.SUPPLY_UPLOAD_MAX_RETRIES }}
run: bundle exec fastlane android deploy_internal