-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (46 loc) · 1.34 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
name: Build and Release AAR
on:
workflow_dispatch:
inputs:
release_tag:
description: 'The release tag to associate with the build'
required: true
type: string
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Setup Golang
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Setup JDK
uses: actions/setup-java@v4
with:
java-version: 17
distribution: 'temurin'
- name: Setup Android SDK Tools
uses: android-actions/[email protected]
with:
cmdline-tools-version: 10406996
- name: Setup Android NDK
uses: nttld/[email protected]
with:
ndk-version: 'r26b'
link-to-sdk: true
- name: Setup Go Mobile
run: |
go install golang.org/x/mobile/cmd/gomobile@latest
export PATH=$PATH:~/go/bin
gomobile init
- name: Build AAR
run: |
gomobile bind -v -androidapi 21 -ldflags='-s -w' -o libSocksLite.aar ./pkg/socks
- name: Upload AAR to Release
uses: svenstaro/upload-release-action@v2
with:
file: libSocksLite.aar
tag: ${{ github.event.inputs.release_tag }}
file_glob: false