forked from fossable/sandpolis
-
Notifications
You must be signed in to change notification settings - Fork 0
130 lines (110 loc) · 3.38 KB
/
build.yml
File metadata and controls
130 lines (110 loc) · 3.38 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
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 update && sudo apt-get install -y libwayland-dev libasound2-dev libudev-dev libfuse3-dev
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: dtolnay/rust-toolchain@nightly
with:
targets: ${{ matrix.target }}
- uses: actions-rs/cargo@v1
with:
command: test
args: --target ${{ matrix.target }} --all-features
- uses: actions-rs/cargo@v1
with:
command: build
args: --bin sandpolis --target ${{ matrix.target }} --all-features --release
- uses: actions/upload-artifact@v4
with:
name: linux_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
# - armv7-linux-androideabi
steps:
- run: sudo apt-get install -y libasound2-dev libudev-dev libfuse3-dev llvm
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: dtolnay/rust-toolchain@nightly
with:
targets: ${{ matrix.target }}
- uses: actions-rs/cargo@v1
with:
command: install
args: cargo-ndk
- name: Build native library
uses: ClementTsang/cargo-action@v0.0.6
with:
command: ndk
args: -t arm64-v8a -o android/app/src/main/jniLibs build
directory: sandpolis-mobile
- name: Build apk
working-directory: sandpolis-mobile/android
run: |
./gradlew build
- uses: actions/upload-artifact@v4
with:
name: android_artifacts
path: sandpolis-mobile/android/app/build/outputs/apk/debug/*.apk
docker:
name: docker / sandpolis-${{ matrix.instance }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
instance:
- server
- agent
- client
steps:
- uses: actions/checkout@v4
with:
fetch-tags: true
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Find version tags
id: get_tags
run: |
for tag in $(git tag --points-at HEAD); do
echo "${tag%-*}=${tag##*-}" >>"$GITHUB_OUTPUT"
done
- uses: docker/build-push-action@v5
with:
file: sandpolis/${{ matrix.instance }}.Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: sandpolis/${{ matrix.instance }}:nightly
# - uses: peter-evans/dockerhub-description@v4
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
# repository: sandpolis/${{ matrix.instance }}