From 1dfc2e8d4e53766ecfa8c32cc57e568176974290 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Mon, 12 Feb 2024 11:10:24 -0500 Subject: [PATCH] Do RPM builds in CI --- .github/workflows/build.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5e54a4e..56f302b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -44,6 +44,12 @@ jobs: command: install args: cargo-deb + - name: Install cargo-generate-rpm + uses: actions-rs/cargo@v1 + with: + command: install + args: cargo-generate-rpm + - name: Compile uses: actions-rs/cargo@v1 with: @@ -65,12 +71,25 @@ jobs: command: deb args: --target ${{ matrix.target }} --no-build + - name: Package RPM + uses: actions-rs/cargo@v1 + with: + use-cross: false + command: generate-rpm + args: --target ${{ matrix.target }} + - name: Upload DEB uses: actions/upload-artifact@v3 with: name: debian-packages path: target/${{ matrix.target }}/debian/*.deb + - name: Upload RPM + uses: actions/upload-artifact@v3 + with: + name: rpm-packages + path: target/${{ matrix.target }}/generate-rpm/*.rpm + - name: Determine binary sizes id: get-bin-size-info run: |