-
Notifications
You must be signed in to change notification settings - Fork 1
45 lines (45 loc) · 1.51 KB
/
main.yaml
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
name: CI Client builder
on: [workflow_dispatch, push]
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v3
- uses: pguyot/arm-runner-action@v2
with:
image_additional_mb: 8192
base_image: raspios_lite_arm64:latest
bind_mount_repository: true
copy_artifact_path: client/cmake/build/client
copy_artifact_dest: ${{ github.workspace }}
commands: |
export MY_INSTALL_DIR=$HOME/.local
mkdir -p $MY_INSTALL_DIR
export PATH="$MY_INSTALL_DIR/bin:$PATH"
apt update
apt install -y sudo cmake git build-essential autoconf libtool pkg-config libjsoncpp-dev libpqxx-dev libc6
git clone --recurse-submodules -b v1.64.2 --depth 1 --shallow-submodules https://github.com/grpc/grpc
cd grpc
mkdir -p cmake/build
cd cmake/build
cmake -DgRPC_INSTALL=ON \
-DgRPC_BUILD_TESTS=OFF \
-DCMAKE_INSTALL_PREFIX=$MY_INSTALL_DIR \
../..
make -j 2
make install
cd ../../../
cd client/
chmod +x genCppProto.sh
./genCppProto.sh
mkdir -p cmake/build
cd cmake/build
cmake ../..
make -j 2
mv client mmclient
cd ../..
- name: Upload binary release file
uses: actions/upload-artifact@v3
with:
name: mmclient ARM release
path: ${{ github.workspace }}/mmclient