pkg: fix deb package building and extend CI #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 -y 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 }} |