forked from AndroidIDEOfficial/AndroidIDE
-
Notifications
You must be signed in to change notification settings - Fork 1
203 lines (193 loc) · 6.79 KB
/
Copy pathbuild.yml
File metadata and controls
203 lines (193 loc) · 6.79 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
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
name: Build and test
on:
push:
branches: [ "dev", "main", "indexing", "release/**" ]
paths-ignore:
- '**.md'
- 'fastlane/**'
- '.github/workflows/crowdin_contributors.yml'
pull_request:
branches: [ "dev" ]
paths-ignore:
- '**.md'
- 'fastlane/**'
- '.github/workflows/crowdin_contributors.yml'
workflow_dispatch: { }
env:
# Misc
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Signing info
IDE_SIGNING_ALIAS: ${{ secrets.IDE_SIGNING_ALIAS }}
IDE_SIGNING_AUTH_PASS: ${{ secrets.IDE_SIGNING_AUTH_PASS }}
IDE_SIGNING_AUTH_USER: ${{ secrets.IDE_SIGNING_AUTH_USER }}
IDE_SIGNING_KEY_PASS: ${{ secrets.IDE_SIGNING_KEY_PASS }}
IDE_SIGNING_STORE_PASS: ${{ secrets.IDE_SIGNING_STORE_PASS }}
IDE_SIGNING_URL: ${{ secrets.IDE_SIGNING_URL }}
IDE_SIGNING_KEY_BIN: ${{ secrets.IDE_SIGNING_KEY_BIN }}
# Publishing credentials
ORG_GRADLE_PROJECT_mavenCentralUsername: ${{ secrets.MVN_USERNAME }}
ORG_GRADLE_PROJECT_mavenCentralPassword: ${{ secrets.MVN_PASSWORD }}
ORG_GRADLE_PROJECT_signingInMemoryKey: ${{ secrets.MVN_SIGNING_KEY }}
ORG_GRADLE_PROJECT_signingInMemoryKeyId: ${{ secrets.MVN_SIGNING_KEY_ID }}
ORG_GRADLE_PROJECT_signingInMemoryKeyPassword: ${{ secrets.MVN_SIGNING_KEY_PASSWORD }}
# Build configuration
BUILD_JAVA_VERSION: '17'
BUILD_JAVA_DIST: 'adopt'
BUILD_IS_RELEASE: ${{ github.ref == 'refs/heads/main' || github.ref == 'refs/heads/release/**' }}
ReleaseAndroidIDE: ${{ github.ref == 'refs/heads/main' }}
jobs:
build_apk:
strategy:
matrix:
build_type: ['debug', 'release']
name: Build APK
runs-on: ubuntu-latest
steps:
- name: Cancel previous runs
uses: styfle/cancel-workflow-action@0.12.1
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: ${{ env.BUILD_JAVA_VERSION }}
distribution: ${{ env.BUILD_JAVA_DIST }}
- name: Change Gradle wrapper permissions
run: chmod +x ./gradlew
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Assemble ${{ matrix.build_type }} APK
run: |
build_type=${{ matrix.build_type }}
./gradlew :core:app:assemble${build_type^}
- name: Copy ${{ matrix.build_type }} APK
run: |
cp core/app/build/outputs/apk/${{ matrix.build_type }}/app-*.apk ./
- name: Upload arm64-v8a ${{ matrix.build_type }} APK
uses: actions/upload-artifact@v4
with:
name: apk-arm64-v8a-${{ matrix.build_type }}
path: app-arm64-v8a-${{ matrix.build_type }}.apk
- name: Upload armeabi-v7a ${{ matrix.build_type }} APK
uses: actions/upload-artifact@v4
with:
name: apk-armeabi-v7a-${{ matrix.build_type }}
path: app-armeabi-v7a-${{ matrix.build_type }}.apk
- name: Upload x86_64 ${{ matrix.build_type }} APK
uses: actions/upload-artifact@v4
with:
name: apk-x86_64-${{ matrix.build_type }}
path: app-x86_64-${{ matrix.build_type }}.apk
- name: Upload ${{ matrix.build_type }} mappings
if: ${{ always() && matrix.build_type == 'release' }}
uses: actions/upload-artifact@v4
with:
name: release-mappings
path: '**/build/outputs/mapping'
run_tooling_api_tests:
name: Build and test Tooling API
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: ${{ env.BUILD_JAVA_VERSION }}
distribution: ${{ env.BUILD_JAVA_DIST }}
- name: Change Gradle wrapper permissions
run: chmod +x ./gradlew
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Run tooling API tests
run: ./gradlew :tooling:impl:build --continue
env:
ANDROIDIDE_TEST: true
TEST_TOOLING_API_IMPL: true
- name: Upload test reports
if: ${{ always() }}
uses: actions/upload-artifact@v4
with:
name: test-results-tooling-api-tests
path: '**/build/reports/tests/'
publish:
name: Publish release
runs-on: ubuntu-latest
needs: [ build_apk, run_tooling_api_tests ]
if: |
always()
&& github.ref == 'refs/heads/main'
&& github.event_name != 'pull_request'
&& needs.build_apk.result == 'success'
&& needs.run_tooling_api_tests.result == 'success'
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: 'recursive'
fetch-depth: 0
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: ${{ env.BUILD_JAVA_VERSION }}
distribution: ${{ env.BUILD_JAVA_DIST }}
- name: Download arm64-v8a APK
uses: actions/download-artifact@v4
with:
name: apk-arm64-v8a-release
- name: Download x86_64 APK
uses: actions/download-artifact@v4
with:
name: apk-x86_64-release
- name: Download armeabi-v7a APK
uses: actions/download-artifact@v4
with:
name: apk-armeabi-v7a-release
- name: Change Gradle wrapper permissions
run: chmod +x ./gradlew
- name: Restore cache
uses: actions/cache@v4
with:
path: |
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
restore-keys: |
${{ runner.os }}-gradle-
- name: Generate checksums
run: |
mkdir -p build
md5sum *.apk > build/CHECKSUMS-md5.txt
sha256sum *.apk > build/CHECKSUMS-sha256.txt
sha512sum *.apk > build/CHECKSUMS-sha512.txt
find build -type f -name "CHECKSUMS*.txt" -exec echo {} \; -exec cat {} \; -exec echo "" \;
- name: Publish release
run: ./gradlew nyxMake nyxMark nyxPublish publish release --stacktrace
- name: Archive Nyx state file
uses: actions/upload-artifact@v4
if: ${{ always() }}
with:
name: .nyx-state-${{ github.job }}.json
path: build/nyx-state.json