From 95268b50205a0a113ca96dbf72338a49756cdf79 Mon Sep 17 00:00:00 2001 From: Neshura Date: Fri, 29 Dec 2023 01:13:19 +0100 Subject: [PATCH 1/2] Run check on pull-requests --- .forgejo/workflows/build+release.yml | 2 +- .forgejo/workflows/pull-requests.yml | 77 ++++++++++++++++++++++++++++ 2 files changed, 78 insertions(+), 1 deletion(-) create mode 100644 .forgejo/workflows/pull-requests.yml diff --git a/.forgejo/workflows/build+release.yml b/.forgejo/workflows/build+release.yml index 33b38f2..ba81d04 100644 --- a/.forgejo/workflows/build+release.yml +++ b/.forgejo/workflows/build+release.yml @@ -1,4 +1,4 @@ -name: 'Build and Release Binary File' +name: 'Build and release binary file and packages' author: 'Neshura' on: diff --git a/.forgejo/workflows/pull-requests.yml b/.forgejo/workflows/pull-requests.yml new file mode 100644 index 0000000..11d4921 --- /dev/null +++ b/.forgejo/workflows/pull-requests.yml @@ -0,0 +1,77 @@ +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 + - + name: Check if Version in Cargo.toml matches Tag + 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 + 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: Bundle .deb package + run: | + cargo deb + DEBIAN_REF=$(cat Cargo.toml | grep -E "(^|\|)version =" | cut -f2- -d= | tr -d \" | tr -d " " | tr - \~) + echo "DEBIAN_REF=$DEBIAN_REF" >> dist/build.env + DEBIAN_REV=-$(cat Cargo.toml | grep -E "(^|\|)revision =" | cut -f2- -d= | tr -d \" | tr -d " ") + echo "DEBIAN_REV=$DEBIAN_REV" >> dist/build.env + mv target/debian/${{ github.event.repository.name }}_"$DEBIAN_REF""$DEBIAN_REV"_amd64.deb dist/${{ github.event.repository.name }}_"$DEBIAN_REF""$DEBIAN_REV"_amd64.deb + - + name: Uploading Build Artifact + uses: actions/upload-artifact@v3 + with: + name: release_blobs + path: dist + if-no-files-found: error \ No newline at end of file From db0df8f0f0a0a6b0796e4730581a0919d716e2ed Mon Sep 17 00:00:00 2001 From: Neshura Date: Fri, 29 Dec 2023 01:20:32 +0100 Subject: [PATCH 2/2] Remove Version checking from test step --- .forgejo/workflows/pull-requests.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/.forgejo/workflows/pull-requests.yml b/.forgejo/workflows/pull-requests.yml index 11d4921..2e53c8e 100644 --- a/.forgejo/workflows/pull-requests.yml +++ b/.forgejo/workflows/pull-requests.yml @@ -31,16 +31,6 @@ jobs: - name: Run Clippy run: cargo clippy - - - name: Check if Version in Cargo.toml matches Tag - 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