-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2 from CramBL/integrate-cargo-dist
add cargo dist release workflow
- Loading branch information
Showing
10 changed files
with
836 additions
and
436 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[env] | ||
CC_aarch64_unknown_linux_musl = "aarch64-linux-gnu-gcc" | ||
CC_armv7-unknown-linux-musleabihf = "arm-linux-gnueabihf-gcc" | ||
CC_arm-unknown-linux-musleabihf = "arm-linux-gnueabihf-gcc" | ||
|
||
[target.aarch64-apple-darwin] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.aarch64-unknown-linux-gnu] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
linker = "aarch64-linux-gnu-gcc" | ||
|
||
[target.aarch64-unknown-linux-musl] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
linker = "aarch64-linux-gnu-gcc" | ||
|
||
[target.aarch64-pc-windows-msvc] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.arm-unknown-linux-musleabihf] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
|
||
[target.armv7-unknown-linux-musleabihf] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
linker = "arm-linux-gnueabihf-gcc" | ||
|
||
[target.x86_64-apple-darwin] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.x86_64-unknown-linux-gnu] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.x86_64-unknown-linux-musl] | ||
rustflags = ["-C", "target-feature=+crt-static"] | ||
|
||
[target.x86_64-pc-windows-msvc] | ||
rustflags = ["-C", "target-feature=+crt-static"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
- name: Install AArch64 Toolchain | ||
if: ${{ matrix.runner == 'ubuntu-22.04' }} | ||
run: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-i386 | ||
|
||
- name: Install ARM Toolchain | ||
if: ${{ matrix.runner == 'ubuntu-22.04' }} | ||
run: sudo apt-get update && sudo apt-get install gcc-arm-linux-gnueabihf |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,117 @@ | ||
name: Release | ||
|
||
# Adapted from: https://github.com/casey/just/blob/71b72c4a5378cdf198ba4273e8ff536f9dfa015f/.github/workflows/release.yaml | ||
|
||
on: | ||
push: | ||
tags: ['*'] | ||
|
||
defaults: | ||
run: | ||
shell: bash | ||
|
||
jobs: | ||
release-guard: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: extractions/setup-just@v2 | ||
- name: Check version | ||
run: just --verbose check-version | ||
|
||
release: | ||
needs: release-guard | ||
strategy: | ||
matrix: | ||
target: | ||
- aarch64-apple-darwin | ||
- aarch64-unknown-linux-musl | ||
- arm-unknown-linux-musleabihf | ||
- armv7-unknown-linux-musleabihf | ||
- x86_64-apple-darwin | ||
- x86_64-pc-windows-msvc | ||
- aarch64-pc-windows-msvc | ||
- x86_64-unknown-linux-musl | ||
include: | ||
- target: aarch64-apple-darwin | ||
os: macos-latest | ||
target_rustflags: '' | ||
- target: aarch64-unknown-linux-musl | ||
os: ubuntu-latest | ||
target_rustflags: '--codegen linker=aarch64-linux-gnu-gcc' | ||
- target: arm-unknown-linux-musleabihf | ||
os: ubuntu-latest | ||
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | ||
- target: armv7-unknown-linux-musleabihf | ||
os: ubuntu-latest | ||
target_rustflags: '--codegen linker=arm-linux-gnueabihf-gcc' | ||
- target: x86_64-apple-darwin | ||
os: macos-latest | ||
target_rustflags: '' | ||
- target: x86_64-pc-windows-msvc | ||
os: windows-latest | ||
- target: aarch64-pc-windows-msvc | ||
os: windows-latest | ||
target_rustflags: '' | ||
- target: x86_64-unknown-linux-musl | ||
os: ubuntu-latest | ||
target_rustflags: '' | ||
|
||
runs-on: ${{matrix.os}} | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Install musl-gcc | ||
if: ${{ matrix.target == 'x86_64-unknown-linux-musl' }} | ||
run: sudo apt-get update && sudo apt-get install musl-tools && musl-gcc --version | ||
|
||
- name: Install AArch64 Toolchain | ||
if: ${{ matrix.target == 'aarch64-unknown-linux-musl' }} | ||
run: sudo apt-get update && sudo apt-get install gcc-aarch64-linux-gnu libc6-dev-i386 | ||
|
||
- name: Install ARM Toolchain | ||
if: ${{ matrix.target == 'arm-unknown-linux-musleabihf' || matrix.target == 'armv7-unknown-linux-musleabihf' }} | ||
run: sudo apt-get update && sudo apt-get install gcc-arm-linux-gnueabihf | ||
|
||
- name: Install AArch64 Toolchain (Windows) | ||
if: ${{ matrix.target == 'aarch64-pc-windows-msvc' }} | ||
run: rustup target add aarch64-pc-windows-msvc | ||
|
||
- name: Package | ||
id: package | ||
env: | ||
TARGET: ${{ matrix.target }} | ||
REF: ${{ github.ref }} | ||
OS: ${{ matrix.os }} | ||
TARGET_RUSTFLAGS: ${{ matrix.target_rustflags }} | ||
shell: bash | ||
run: ./scripts/package.bash | ||
|
||
- name: Publish Archive | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
draft: false | ||
files: ${{ steps.package.outputs.archive }} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Publish Changelog | ||
uses: softprops/[email protected] | ||
if: ${{ startsWith(github.ref, 'refs/tags/') && matrix.target == 'x86_64-unknown-linux-musl' }} | ||
with: | ||
draft: false | ||
files: CHANGELOG.md | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
release-crates-io: | ||
needs: release-guard | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Publish | ||
run: cargo publish --token ${{ secrets.CARGO_PUBLISH_TOKEN }} |
Oops, something went wrong.