-
Notifications
You must be signed in to change notification settings - Fork 6
53 lines (48 loc) · 1.91 KB
/
release.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
name: Release stremio-core-android
on:
release:
types: [published]
jobs:
release:
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
java-version: "11"
distribution: "adopt"
- name: Setup Android SDK
# newer version of the 2 actions will cause a LinkageError
# Error: LinkageError occurred while loading main class com.android.sdklib.tool.sdkmanager.SdkManagerCli
# java.lang.UnsupportedClassVersionError: com/android/sdklib/tool/sdkmanager/SdkManagerCli
# has been compiled by a more recent version of the Java Runtime (class file version 61.0),
# this version of the Java Runtime only recognizes class file versions up to 55.0
# uses: android-actions/setup-android@v3
uses: android-actions/setup-android@v2
- name: Setup Android NDK
run: yes | sdkmanager "ndk;21.4.7075529" >/dev/null
# use MSRV
- name: Set Rust version to MSRV 1.70
uses: dtolnay/[email protected]
with:
# Add armv7, aarch64, i686, x86_64 targets
targets: armv7-linux-androideabi, aarch64-linux-android, i686-linux-android, x86_64-linux-android
components: rust-std
- uses: Swatinem/rust-cache@v2
- name: Build aar
run: ./gradlew -Pversion=${GITHUB_REF##*/} publishToMavenLocal
- name: Archive artifacts
run: tar -C ~/.m2/repository/com/github/Stremio -cvzf stremio-core-kotlin.tar.gz .
- name: Archive build
run: tar -C build -cvzf build.tar.gz publications
- name: Upload build artifacts
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: "*.tar.gz"
tag: ${{ github.ref }}
overwrite: true
file_glob: true