-
-
Notifications
You must be signed in to change notification settings - Fork 113
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Simplified docker image building * minor name fix * Optimize container pipeline * Change config to redlib-org account * Added README push to Quay.io * Fixes
- Loading branch information
Showing
5 changed files
with
180 additions
and
146 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,75 @@ | ||
name: Release Build | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- "*.md" | ||
- "compose.*" | ||
branches: | ||
- "main" | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
CARGO_TARGET_AARCH64_UNKNOWN_LINUX_MUSL_LINKER: aarch64-linux-gnu-gcc | ||
CC_aarch64_unknown_linux_musl: aarch64-linux-gnu-gcc | ||
CARGO_TARGET_ARMV7_UNKNOWN_LINUX_MUSLEABIHF_LINKER: arm-linux-gnueabihf-gcc | ||
CC_armv7_unknown_linux_musleabihf: arm-linux-gnueabihf-gcc | ||
|
||
jobs: | ||
build: | ||
name: Rust project - latest | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: | ||
- x86_64-unknown-linux-musl | ||
- aarch64-unknown-linux-musl | ||
- armv7-unknown-linux-musleabihf | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
target: ${{ matrix.target }} | ||
|
||
- if: matrix.target == 'x86_64-unknown-linux-musl' | ||
run: | | ||
sudo apt-get update | ||
sudo apt-get install -y --no-install-recommends musl-tools | ||
- if: matrix.target == 'armv7-unknown-linux-musleabihf' | ||
run: | | ||
sudo apt update | ||
sudo apt install -y gcc-arm-linux-gnueabihf musl-tools | ||
- if: matrix.target == 'aarch64-unknown-linux-musl' | ||
run: | | ||
sudo apt update | ||
sudo apt install -y gcc-aarch64-linux-gnu musl-tools | ||
- name: Versions | ||
id: version | ||
run: echo "VERSION=$(cargo metadata --format-version 1 --no-deps | jq .packages[0].version -r | sed 's/^/v/')" >> "$GITHUB_OUTPUT" | ||
|
||
- name: Build | ||
run: cargo build --release --target ${{ matrix.target }} | ||
|
||
- name: Package release | ||
run: tar czf redlib-${{ matrix.target }}.tar.gz -C target/${{ matrix.target }}/release/ redlib | ||
|
||
- name: Upload release | ||
uses: softprops/action-gh-release@v1 | ||
if: github.base_ref != 'main' && github.event_name == 'release' | ||
with: | ||
tag_name: ${{ steps.version.outputs.VERSION }} | ||
name: ${{ steps.version.outputs.VERSION }} - ${{ github.event.head_commit.message }} | ||
draft: true | ||
files: | | ||
redlib-${{ matrix.target }}.tar.gz | ||
body: | | ||
- ${{ github.event.head_commit.message }} ${{ github.sha }} | ||
generate_release_notes: true | ||
|
||
|
||
|
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
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
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.