-
-
Notifications
You must be signed in to change notification settings - Fork 245
167 lines (137 loc) · 4.78 KB
/
testing.yml
File metadata and controls
167 lines (137 loc) · 4.78 KB
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
name: Testing - build and release app
on:
push:
branches:
- 'develop'
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
test:
name: Run unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: 17
cache: 'gradle'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Unit tests
run: bash ./gradlew testDebugUnitTest
style:
name: Code style check
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: 17
cache: 'gradle'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Ktlint check
run: ./gradlew ktlintCheck
apk:
name: Generate and upload APK to Discord
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- uses: actions/cache@v3
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
restore-keys: |
${{ runner.os }}-gradle-
- uses: christian-draeger/write-properties@1.0.1
with:
path: app/version.properties
property: VERSION_NUM
value: ${{ github.run_number }}
- name: set up JDK 17
uses: actions/setup-java@v3
with:
distribution: 'oracle'
java-version: 17
cache: 'gradle'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: set up Ruby for fastlane
uses: ruby/setup-ruby@v1
with:
ruby-version: '3.3'
- name: Create debug keystore
if: github.event.repository.fork == false
env:
CI_KEYSTORE: ${{ secrets.CI_KEYSTORE }}
run: |
echo "$CI_KEYSTORE" | base64 --decode > /home/runner/.android/debug.keystore
- name: Install bundle
run: bundle install
- name: Set Git credentials
run: |
git config user.name "GitHub Actions"
git config user.email noreply@github.com
- name: Build apk with fastlane
run: bundle exec fastlane testing
- name: set apk name env
run: echo "APK_NAME=$(basename app/build/outputs/apk/ci/*.apk .apk)" >> $GITHUB_ENV
- name: Upload APK
uses: actions/upload-artifact@v4
with:
name: ${{ env.APK_NAME }}
path: app/build/outputs/apk/ci/${{ env.APK_NAME }}.apk
- name: Upload to Discord
uses: sinshutu/upload-to-discord@v2.0.0
if: github.event.repository.fork == false
env:
DISCORD_WEBHOOK: ${{ secrets.DISCORD_WEBHOOK }}
with:
args: app/build/outputs/apk/ci/${{ env.APK_NAME }}.apk
- name: Report build status to Discord
uses: sarisia/actions-status-discord@v1
if: github.event.repository.fork == false && failure()
with:
title: "Build apk"
webhook: ${{ secrets.DISCORD_BUILD_STATUS_WEBHOOK }}
synchronize-with-crowdin:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: crowdin action
uses: crowdin/github-action@v2
if: github.event.repository.fork == false
with:
upload_sources: true
upload_translations: false
download_translations: true
localization_branch_name: l10n/develop
create_pull_request: true
pull_request_title: 'New Crowdin Translations'
pull_request_body: 'New Crowdin translations by [Crowdin GH Action](https://github.com/crowdin/github-action)'
pull_request_base_branch_name: 'develop'
env:
# A classic GitHub Personal Access Token with the 'repo' scope selected (the user should have write access to the repository).
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# A numeric ID, found at https://crowdin.com/project/<projectName>/tools/api
CROWDIN_PROJECT_ID: ${{ secrets.CROWDIN_PROJECT_ID }}
# Visit https://crowdin.com/settings#api-key to create this token
CROWDIN_PERSONAL_TOKEN: ${{ secrets.CROWDIN_PERSONAL_TOKEN }}