-
Notifications
You must be signed in to change notification settings - Fork 8
76 lines (64 loc) · 1.81 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
name: build
on:
push:
branches:
- master
jobs:
linux:
name: linux / ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
# - aarch64-unknown-linux-gnu
# - aarch64-unknown-linux-musl
# - i686-unknown-linux-gnu
- x86_64-unknown-linux-gnu
# - x86_64-unknown-linux-musl
steps:
- run: sudo apt-get install -y libwayland-dev libasound2-dev libudev-dev
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: actions-rs/cargo@v1
with:
command: build
args: --bin sandpolis --target ${{ matrix.target }} --all-features
- uses: actions/upload-artifact@v4
with:
name: build_artifacts
path: target/${{ matrix.target }}/debug/sandpolis
android:
name: android / ${{ matrix.target }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
target:
- aarch64-linux-android
steps:
- run: sudo apt-get install -y libasound2-dev libudev-dev llvm
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: dtolnay/rust-toolchain@stable
with:
targets: ${{ matrix.target }}
- uses: rust-mobile/setup-xbuild-action@v1
env:
GH_TOKEN: ${{ github.token }}
- name: Build apk
working-directory: sandpolis-client-mobile
run: |
x doctor
x build --arch arm64 --platform android --format apk
cd ..
tree -L 3
- uses: actions/upload-artifact@v4
with:
name: build_artifacts
path: target/${{ matrix.target }}/debug/*.apk