Neshura
c675c7c860
All checks were successful
Run Tests on Code / run-tests (push) Successful in 12s
Build binary file and bundle packages / test (pull_request) Successful in 11s
Build binary file and bundle packages / build (pull_request) Successful in 26s
Build binary file and bundle packages / test-env (pull_request) Successful in 0s
97 lines
3.1 KiB
YAML
97 lines
3.1 KiB
YAML
name: 'Build binary file and bundle packages'
|
|
author: 'Neshura'
|
|
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
test:
|
|
runs-on: docker
|
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
|
steps:
|
|
- name: Add Clippy
|
|
run: rustup component add clippy
|
|
|
|
- name: Checking Out Repository Code
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
- name: Set Up Cargo Cache
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: |
|
|
~/.cargo/bin/
|
|
~/.cargo/registry/index/
|
|
~/.cargo/registry/cache/
|
|
~/.cargo/git/db/
|
|
target/
|
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Run Clippy
|
|
run: cargo clippy
|
|
|
|
build:
|
|
needs: test
|
|
if: success()
|
|
runs-on: docker
|
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
|
outputs:
|
|
debian_name: ${{ steps.deb.outputs.debian_name }}
|
|
debian_rev: ${{ steps.deb.outputs.debian_rev }}
|
|
debian_ref: ${{ steps.deb.outputs.debian_ref }}
|
|
steps:
|
|
- name: Checking Out Repository Code
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
|
|
|
- name: Prepare build environment
|
|
run: mkdir dist
|
|
|
|
- name: Compiling To Linux Target
|
|
run: |
|
|
cargo build -r
|
|
mv target/release/${{ github.event.repository.name }} dist/${{ github.event.repository.name }}-linux-amd64
|
|
|
|
- name: Collect Debian Metadata
|
|
id: deb
|
|
run: |
|
|
DEBIAN_REF=$(cat Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " " | tr - \~)
|
|
echo "debian_ref=$DEBIAN_REF" >> $GITHUB_OUTPUT
|
|
echo DEBIAN_REF: $DEBIAN_REF
|
|
DEBIAN_REV=$(cat Cargo.toml | grep -E "(^|\|)revision =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
|
echo "debian_rev=$DEBIAN_REV" >> $GITHUB_OUTPUT
|
|
echo DEBIAN_REV: $DEBIAN_REV
|
|
DEBIAN_NAME=$(cat Cargo.toml | grep -E "(^|\|)name =" | tail -n1 | cut -f2- -d= | tr -d \" | tr -d " ")
|
|
echo "debian_name=$DEBIAN_NAME" >> $GITHUB_OUTPUT
|
|
echo DEBIAN_NAME: $DEBIAN_NAME
|
|
|
|
- name: Bundle .deb package
|
|
run: |
|
|
cargo deb
|
|
DEBIAN_FILE=$(echo ${{ steps.deb.outputs.debian_name }}_${{ steps.deb.outputs.debian_ref }}-${{ steps.deb.outputs.debian_rev }}_amd64.deb)
|
|
echo mv target/debian/$DEBIAN_FILE dist/$DEBIAN_FILE
|
|
mv target/debian/$DEBIAN_FILE dist/$DEBIAN_FILE
|
|
|
|
- name: Uploading Build Artifact
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: release_blobs
|
|
path: dist
|
|
if-no-files-found: error
|
|
|
|
test-env:
|
|
needs: build
|
|
if: success()
|
|
runs-on: docker
|
|
steps:
|
|
- name: Test Debian Variables
|
|
run: |
|
|
echo DEBIAN_NAME: ${{ needs.build.outputs.debian_name }}
|
|
test -n ${{ needs.build.outputs.debian_name }}
|
|
|
|
echo DEBIAN_REF: ${{ needs.build.outputs.debian_ref }}
|
|
test -n ${{ needs.build.outputs.debian_ref }}
|
|
|
|
echo DEBIAN_REV: ${{ needs.build.outputs.debian_rev }}
|
|
test -n ${{ needs.build.outputs.debian_rev }}
|