2024-08-07 16:26:41 +00:00
|
|
|
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:
|
2024-08-07 17:51:59 +00:00
|
|
|
- name: Add Clippy
|
2024-08-07 16:26:41 +00:00
|
|
|
run: rustup component add clippy
|
2024-08-07 17:51:59 +00:00
|
|
|
|
|
|
|
- name: Checking Out Repository Code
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2024-08-07 17:51:59 +00:00
|
|
|
|
|
|
|
- name: Set Up Cargo Cache
|
2024-08-07 16:26:41 +00:00
|
|
|
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') }}
|
2024-08-07 17:51:59 +00:00
|
|
|
|
|
|
|
- name: Run Clippy
|
2024-08-07 16:26:41 +00:00
|
|
|
run: cargo clippy
|
|
|
|
|
|
|
|
build:
|
|
|
|
needs: test
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
2024-08-07 17:48:40 +00:00
|
|
|
outputs:
|
2024-08-07 18:30:27 +00:00
|
|
|
DEBIAN_NAME: ${{ steps.deb.outputs.debian_name }}
|
|
|
|
DEBIAN_REV: ${{ steps.deb.outputs.debian_rev }}
|
|
|
|
DEBIAN_REF: ${{ steps.deb.outputs.debian_ref }}
|
2024-08-07 16:26:41 +00:00
|
|
|
steps:
|
2024-08-07 17:51:59 +00:00
|
|
|
- name: Checking Out Repository Code
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: https://code.forgejo.org/actions/checkout@v3
|
2024-08-07 17:51:59 +00:00
|
|
|
|
|
|
|
- name: Prepare build environment
|
2024-08-07 16:26:41 +00:00
|
|
|
run: mkdir dist
|
2024-08-07 17:51:59 +00:00
|
|
|
|
2024-08-07 18:11:48 +00:00
|
|
|
- name: Compiling To Linux Target
|
|
|
|
run: |
|
|
|
|
cargo build -r
|
|
|
|
mv target/release/${{ github.event.repository.name }} dist/${{ github.event.repository.name }}-linux-amd64
|
2024-08-07 17:51:59 +00:00
|
|
|
|
2024-08-07 18:30:27 +00:00
|
|
|
- name: Collect Debian Metadata
|
|
|
|
id: deb
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
2024-08-07 18:06:20 +00:00
|
|
|
DEBIAN_REF=$(echo ${{ github.ref_name }} | tr - \~)
|
2024-08-07 18:11:48 +00:00
|
|
|
echo "debian_ref=$DEBIAN_REF" >> ${{ env.GITHUB_OUTPUT }}
|
2024-08-07 18:06:20 +00:00
|
|
|
echo DEBIAN_REF: $DEBIAN_REF
|
2024-08-07 18:11:48 +00:00
|
|
|
DEBIAN_REV=$(cat Cargo.toml | grep -E "(^|\|)revision =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
2024-08-07 18:07:09 +00:00
|
|
|
echo "debian_rev=$DEBIAN_REV" >> ${{ env.GITHUB_OUTPUT }}
|
|
|
|
echo DEBIAN_REV: $DEBIAN_REV
|
2024-08-07 18:34:21 +00:00
|
|
|
DEBIAN_NAME=$(cat Cargo.toml | grep -E "(^|\|)name =" | tail -n1 | cut -f2- -d= | tr -d \" | tr -d " ")
|
2024-08-07 18:07:09 +00:00
|
|
|
echo "debian_name=$DEBIAN_NAME" >> ${{ env.GITHUB_OUTPUT }}
|
|
|
|
echo DEBIAN_NAME: $DEBIAN_NAME
|
2024-08-07 18:30:27 +00:00
|
|
|
|
|
|
|
- name: Bundle .deb package
|
2024-08-07 18:36:32 +00:00
|
|
|
run: |
|
2024-08-07 18:38:12 +00:00
|
|
|
echo mv target/debian/${{ env.DEBIAN_NAME }}_${{ env.DEBIAN_REF }}-${{ env.DEBIAN_REV }}_amd64.deb dist/${{ env.DEBIAN_NAME }}_${{ env.DEBIAN_REF }}-${{ env.DEBIAN_REV }}_amd64.deb
|
|
|
|
#mv target/debian/${{ env.DEBIAN_NAME }}_${{ env.DEBIAN_REF }}-${{ env.DEBIAN_REV }}_amd64.deb dist/${{ env.DEBIAN_NAME }}_${{ env.DEBIAN_REF }}-${{ env.DEBIAN_REV }}_amd64.deb
|
2024-08-07 17:51:59 +00:00
|
|
|
|
|
|
|
- name: Uploading Build Artifact
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: release_blobs
|
|
|
|
path: dist
|
2024-08-07 17:48:40 +00:00
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
test-env:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-08-07 17:52:08 +00:00
|
|
|
- name: Test Debian Variables
|
2024-08-07 17:48:40 +00:00
|
|
|
run: |
|
2024-08-07 17:55:19 +00:00
|
|
|
echo ${{ needs.build.outputs.debian_name }}
|
|
|
|
test -v ${{ needs.build.outputs.debian_name }}
|
|
|
|
|
|
|
|
echo ${{ needs.build.outputs.debian_ref }}
|
|
|
|
test -v ${{ needs.build.outputs.debian_ref }}
|
|
|
|
|
|
|
|
echo ${{ needs.build.outputs.debian_rev }}
|
|
|
|
test -v ${{ needs.build.outputs.debian_rev }}
|