238275c45b
Former-commit-id: c9c4a40b7a80bca9dd1d75c46f8a46d2bf50a6f4 [formerly 8d2da960fb85b0dbe07a2083743f3aa170b9c477] [formerly b3622c22f27d06155f4294c9b653a2b4eda4e047 [formerly 30b9e5ccbfdcf97b5cb1c5642c144db03140c947]] Former-commit-id: 47d8ed78b8b52742c5a2478accb4f83dac28f87c [formerly 5dd218cea4f7256e4067aaffb59f30b7501c35b4] Former-commit-id: a8313670180f842e0e76a7a2d7a666d301c6c5fb Former-commit-id: 213e67dbe1de4c6cfd67d4857ef9035e7c7ff211 Former-commit-id: 3c1709034df833042cde06798059c38e3b5a25aa Former-commit-id: 107cd1164ae7d14b8251abc8667ca0c96071c2d5 [formerly d16229a665defefad585db48483e5142aef7988f] Former-commit-id: 22093301b46829b127009e80318f002787633801
115 lines
3.6 KiB
YAML
115 lines
3.6 KiB
YAML
on:
|
|
# Indicates I want to run this workflow on all branches, PR, and tags
|
|
push:
|
|
branches: ["neo"]
|
|
tags: ["*"]
|
|
pull_request:
|
|
branches: [ "main" ]
|
|
|
|
env:
|
|
RUST_VERSION: 1.73.0
|
|
BUILD_ARGS: "--release"
|
|
BIN_NAME: "wstunnel"
|
|
|
|
jobs:
|
|
build:
|
|
name: Build - ${{ matrix.platform.name }}
|
|
# By default, runs on Ubuntu, otherwise, override with the desired os
|
|
runs-on: ${{ matrix.platform.os || 'ubuntu-22.04' }}
|
|
strategy:
|
|
matrix:
|
|
# Set platforms you want to build your binaries on
|
|
platform:
|
|
# Linux
|
|
- name: Linux x86_64
|
|
target: x86_64-unknown-linux-musl
|
|
|
|
- name: Linux aarch64
|
|
target: aarch64-unknown-linux-musl
|
|
|
|
- name: Linux armv7hf
|
|
target: armv7-unknown-linux-musleabihf
|
|
|
|
#- name: Linux mips
|
|
# target: mips-unknown-linux-musl
|
|
|
|
#- name: Linux mips64
|
|
# target: mips64-unknown-linux-muslabi64
|
|
|
|
# Mac OS
|
|
- name: MacOS x86_64
|
|
target: x86_64-apple-darwin
|
|
|
|
# - name: iOS x86_64
|
|
# target: x86_64-apple-ios
|
|
|
|
#- name: MacOS aarch64
|
|
# target: aarch64-apple-darwin
|
|
|
|
#- name: iOS aarch64
|
|
# target: aarch64-apple-ios
|
|
|
|
|
|
# Windows
|
|
- name: Windows x86_64
|
|
os: windows-latest
|
|
target: x86_64-pc-windows-msvc
|
|
|
|
steps:
|
|
- name: Create annotation for build error
|
|
if: contains(matrix.platform.target, 'linux')
|
|
run: sudo apt install musl-tools
|
|
|
|
- name: Checkout Git repo
|
|
uses: actions/checkout@v3
|
|
|
|
# Linux & Windows
|
|
- name: Install rust toolchain
|
|
if: ${{ !contains(matrix.platform.target, 'apple') }}
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
# We setup Rust toolchain and the desired target
|
|
profile: minimal
|
|
toolchain: "${{ env.RUST_VERSION }}"
|
|
override: true
|
|
target: ${{ matrix.platform.target }}
|
|
components: rustfmt, clippy
|
|
- name: Build ${{ matrix.platform.name }} binary
|
|
if: ${{ !contains(matrix.platform.target, 'apple') }}
|
|
uses: actions-rs/cargo@v1
|
|
# We use cross-rs if not running on x86_64 architecture on Linux
|
|
with:
|
|
command: build
|
|
use-cross: ${{ !contains(matrix.platform.target, 'x86_64') }}
|
|
args: ${{ env.BUILD_ARGS }} --target ${{ matrix.platform.target }}
|
|
|
|
# Mac OS
|
|
- name: Build ${{ matrix.platform.name }} binary
|
|
if: contains(matrix.platform.target, 'apple')
|
|
# We use a dedicated Rust image containing required Apple libraries to cross-compile on multiple archs
|
|
run: |
|
|
docker run --rm --volume "${PWD}":/root/src --workdir /root/src joseluisq/rust-linux-darwin-builder:$RUST_VERSION \
|
|
sh -c "CC=o64-clang CXX=o64-clang++ cargo build $BUILD_ARGS --target ${{ matrix.platform.target }}"
|
|
|
|
- name: Store artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
# Finally, we store the binary as GitHub artifact for later usage
|
|
name: ${{ matrix.platform.target }}-${{ env.BIN_NAME }}
|
|
path: target/${{ matrix.platform.target }}/release/${{ env.BIN_NAME }}${{ contains(matrix.platform.target, 'windows') && '.exe' || '' }}
|
|
retention-days: 1
|
|
|
|
release:
|
|
name: Release
|
|
needs: [build]
|
|
# We run the release job only if a tag starts with 'v' letter
|
|
if: startsWith( github.ref, 'refs/tags/v' )
|
|
runs-on: ubuntu-22.04
|
|
steps:
|
|
- name: Checkout Git repo
|
|
uses: actions/checkout@v3
|
|
|
|
# Download all artifacts
|
|
- uses: actions/download-artifact@v3
|
|
with:
|
|
path: artifacts
|