-
Notifications
You must be signed in to change notification settings - Fork 2
82 lines (64 loc) · 2.31 KB
/
release.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
76
77
78
79
80
81
name: Release
on:
workflow_dispatch:
release:
types:
- published
jobs:
build_linux_x86_64:
name: Build Linux (x86_64)
runs-on: ubuntu-24.04
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt-get install -y build-essential pkg-config libssl-dev clang cmake llvm
- 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 x86_64-unknown-linux-gnu
- name: Build for Linux x86
run: cargo build -r --target=x86_64-unknown-linux-gnu --verbose && mv target/x86_64-unknown-linux-gnu/release/platform-cli ./platform-cli_gnu-x86_64
- uses: softprops/action-gh-release@v2
with:
files: |
platform-cli_gnu-x86_64
build_mac_x86_64:
name: Build Apple (x86_64)
runs-on: macos-13
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Add Rust targets
run: brew install llvm protobuf
- name: Add Rust targets
run: rustup target add x86_64-apple-darwin
- name: Build for Apple x86
run: cargo build -r --target=x86_64-apple-darwin --verbose && mv target/x86_64-apple-darwin/release/platform-cli ./platform-cli_darwin-x86_64
- uses: softprops/action-gh-release@v2
with:
files: |
platform-cli_darwin-x86_64
build_mac_arm64:
name: Build Apple (arm64)
runs-on: macos-15
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Add Rust targets
run: brew install llvm protobuf
- name: Add Rust targets
run: rustup target add aarch64-apple-darwin
- name: Build for Apple Silicon
run: cargo build -r --target=aarch64-apple-darwin --verbose && mv target/aarch64-apple-darwin/release/platform-cli ./platform-cli_darwin-arm64
- uses: softprops/action-gh-release@v2
with:
files: |
platform-cli_darwin-arm64