-
Notifications
You must be signed in to change notification settings - Fork 2
45 lines (37 loc) · 1.38 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
name: Build
on:
workflow_dispatch:
pull_request:
branches:
- master
jobs:
build_linux_arm64:
name: Build Linux
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Print arch
run: uname -a
- name: Install dependencies
run: sudo apt-get install -y build-essential pkg-config libssl-dev clang cmake llvm g++-aarch64-linux-gnu gcc-aarch64-linux-gnu libc6-dev-i386 g++-13-multilib gcc-13-multilib && dpkg -l
- name: Install protoc
id: deps-protoc
shell: bash
run: |
curl -Lo /tmp/protoc.zip \
"https://github.com/protocolbuffers/protobuf/releases/download/v28.2/protoc-28.2-linux-x86_64.zip"
unzip -o /tmp/protoc.zip -d ${HOME}/.local
echo "PROTOC=${HOME}/.local/bin/protoc" >> $GITHUB_ENV
export PATH="${PATH}:${HOME}/.local/bin"
- name: Add Rust targets
run: rustup target add aarch64-unknown-linux-gnu
- name: Create Cargo multiarch config
run: |
touch ~/.cargo/config.toml
echo "
[target.aarch64-unknown-linux-gnu]
linker = \"aarch64-linux-gnu-gcc\"
" > ~/.cargo/config.toml
- name: Build for Linux arm64
run: cargo build -r --target=aarch64-unknown-linux-gnu && mv target/unknown-linux-gnu/release/platform-cli ./platform-cli-gnu-arm64