Skip to content

Commit

Permalink
ci: add workflow for building packages
Browse files Browse the repository at this point in the history
Since changes such as introducing a top-level Makefile
can cause a failure during building packages, we will extend
our CI to test that we can successfully build packages
after introducing some changes in the future.
  • Loading branch information
muzarski committed Oct 2, 2024
1 parent 2a0efbf commit 53884b7
Showing 1 changed file with 46 additions and 0 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/pkg.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: Build packages

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

env:
CARGO_TERM_COLORS: always

jobs:
build-rpm-pkgs:
name: Build rpm packages
runs-on: ubuntu-latest

strategy:
matrix:
dist-version: [rocky-9-x86_64, fedora-40-x86_64]
fail-fast: false

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Update git safe directory config
run: git config --global --add safe.directory $(pwd)

- name: Build rpm package for ${{ matrix.dist-version }}
run: docker run -v $(pwd):$(pwd) -w $(pwd) -t fedora:latest sudo dnf install git && git config --global --add safe.directory $(pwd) && ./dist/redhat/build_rpm.sh --target ${{ matrix.dist-version }}

build-deb-pkgs:
name: Build deb packages
runs-on: ubuntu-latest

strategy:
matrix:
dist-version: [jammy, noble]
fail-fast: false

steps:
- name: Checkout
uses: actions/checkout@v4

- name: Build deb package for ${{ matrix.dist-version }}
run: ./dist/debian/build_deb.sh --target ${{ matrix.dist-version }}

0 comments on commit 53884b7

Please sign in to comment.