platform-cli v0.1.4 #21
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release | |
on: | |
workflow_dispatch: | |
release: | |
types: | |
- published | |
jobs: | |
build_linux_x86_64: | |
name: Build Linux (x86_64) | |
runs-on: ubuntu-20.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 && 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_linux_arm64: | |
name: Build Linux (arm64) | |
runs-on: ubuntu-20.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 gcc-aarch64-linux-gnu | |
- 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/aarch64-unknown-linux-gnu/release/platform-cli ./platform-cli-gnu-arm64 | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
platform-cli-gnu-arm64 | |
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 && 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 && mv target/aarch64-apple-darwin/release/platform-cli ./platform-cli_darwin-arm64 | |
- uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
platform-cli_darwin-arm64 |