2024-08-07 16:26:41 +00:00
|
|
|
name: 'Build and release binary file and packages'
|
|
|
|
author: 'Neshura'
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+'
|
|
|
|
- '[0-9]+.[0-9]+.[0-9]+-rc.[0-9]+'
|
|
|
|
jobs:
|
|
|
|
test:
|
|
|
|
runs-on: docker
|
|
|
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
|
|
|
steps:
|
2024-08-07 19:07:12 +00:00
|
|
|
- name: Add Clippy
|
2024-08-07 16:26:41 +00:00
|
|
|
run: rustup component add clippy
|
2024-08-07 19:07:12 +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 19:07:12 +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 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Run Clippy
|
2024-08-07 16:26:41 +00:00
|
|
|
run: cargo clippy
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Check if Version in Cargo.toml matches Tag
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
|
|
|
VERSION=$(cat Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " ")
|
|
|
|
if test $VERSION != "${{ github.ref_name }}"; then
|
|
|
|
echo "Expected Version is: '${{ github.ref_name }}' actual Version is: '$VERSION'";
|
|
|
|
exit 1
|
|
|
|
else
|
|
|
|
echo "Version is: '$VERSION'";
|
|
|
|
fi
|
|
|
|
|
|
|
|
build:
|
|
|
|
needs: test
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
container: forgejo.neshweb.net/ci-docker-images/rust-node:latest
|
2024-08-07 19:07:12 +00:00
|
|
|
outputs:
|
2024-08-07 19:11:19 +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 19:07:12 +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 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Prepare build environment
|
2024-08-07 16:26:41 +00:00
|
|
|
run: mkdir dist
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Compiling To Linux Target
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
|
|
|
cargo build -r
|
|
|
|
mv target/release/${{ github.event.repository.name }} dist/${{ github.event.repository.name }}-linux-amd64
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- 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
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
|
|
|
cargo deb
|
2024-08-07 19:07:12 +00:00
|
|
|
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
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
with:
|
|
|
|
name: release_blobs
|
|
|
|
path: dist
|
|
|
|
if-no-files-found: error
|
|
|
|
|
|
|
|
upload-generic-package:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-08-07 19:07:12 +00:00
|
|
|
- name: Downloading All Build Artifacts
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Upload Binary
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release_blobs/${{ github.event.repository.name }}-linux-amd64 \
|
2024-08-07 17:21:51 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/${{ github.event.repository.name }}-linux-amd64'
|
2024-08-07 16:26:41 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
|
|
|
--upload-file release_blobs/${{ github.event.repository.name }}-linux-amd64 \
|
2024-08-07 17:21:51 +00:00
|
|
|
https://forgejo.neshweb.net/api/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/generic/${{ github.event.repository.name }}/${{ github.ref_name }}/${{ github.event.repository.name }}-linux-amd64
|
2024-08-07 16:26:41 +00:00
|
|
|
|
|
|
|
upload-debian-package:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-08-07 19:07:12 +00:00
|
|
|
- name: Downloading All Build Artifacts
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Upload Debian Package to staging
|
2024-08-07 16:26:41 +00:00
|
|
|
run: |
|
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2024-08-07 19:07:12 +00:00
|
|
|
--upload-file release_blobs/${{ needs.build.outputs.debian_name }}_'${{ needs.build.outputs.debian_ref }}-${{ needs.build.outputs.debian_rev }}'_amd64.deb \
|
2024-08-07 17:33:37 +00:00
|
|
|
${{ env.GITHUB_API_URL }}/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/debian/pool/bookworm/staging/upload'
|
2024-08-07 16:26:41 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2024-08-07 19:07:12 +00:00
|
|
|
--upload-file release_blobs/${{ needs.build.outputs.debian_name }}_${{ needs.build.outputs.debian_ref }}-${{ needs.build.outputs.debian_rev }}_amd64.deb \
|
2024-08-07 17:33:37 +00:00
|
|
|
${{ env.GITHUB_API_URL }}/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/debian/pool/bookworm/staging/upload
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Upload Debian Package to main
|
2024-08-07 16:26:41 +00:00
|
|
|
if: (! contains(github.ref_name, '-rc'))
|
|
|
|
run: |
|
|
|
|
echo 'curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2024-08-07 19:07:12 +00:00
|
|
|
--upload-file release_blobs/${{ needs.build.outputs.debian_name }}_'${{ needs.build.outputs.debian_ref }}-${{ needs.build.outputs.debian_rev }}'_amd64.deb \
|
2024-08-07 17:33:37 +00:00
|
|
|
${{ env.GITHUB_API_URL }}/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/debian/pool/bookworm/main/upload'
|
2024-08-07 16:26:41 +00:00
|
|
|
curl -v --user ${{ secrets.FORGEJO_USERNAME }}:${{ secrets.FORGEJO_TOKEN }} \
|
2024-08-07 19:07:12 +00:00
|
|
|
--upload-file release_blobs/${{ needs.build.outputs.debian_name }}_${{ needs.build.outputs.debian_ref }}-${{ needs.build.outputs.debian_rev }}_amd64.deb \
|
2024-08-07 17:33:37 +00:00
|
|
|
${{ env.GITHUB_API_URL }}/packages/${{ env.GITHUB_REPOSITORY_OWNER }}/debian/pool/bookworm/main/upload
|
2024-08-07 16:26:41 +00:00
|
|
|
|
|
|
|
create-release:
|
|
|
|
needs: build
|
|
|
|
if: success()
|
|
|
|
runs-on: docker
|
|
|
|
steps:
|
2024-08-07 19:07:12 +00:00
|
|
|
- name: Downloading All Build Artifacts
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/download-artifact@v3
|
2024-08-07 19:07:12 +00:00
|
|
|
|
|
|
|
- name: Release New Version
|
2024-08-07 16:26:41 +00:00
|
|
|
uses: actions/forgejo-release@v2
|
|
|
|
with:
|
|
|
|
direction: upload
|
|
|
|
url: https://forgejo.neshweb.net
|
|
|
|
release-dir: release_blobs
|
|
|
|
token: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
tag: ${{ github.ref_name }}
|