Import pytricia 1.3.0 source #30
Workflow file for this run
This file contains hidden or 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: Test building debian packages | |
| on: pull_request | |
| env: | |
| DEBIAN_FRONTEND: noninteractive | |
| jobs: | |
| debian-package-amd64: | |
| name: "${{ matrix.distro }} ${{ matrix.release }} ${{ matrix.arch }}" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - distro: "debian" | |
| release: "bookworm" | |
| arch: "amd64" | |
| - distro: "debian" | |
| release: "trixie" | |
| arch: "amd64" | |
| - distro: "ubuntu" | |
| release: "jammy" | |
| arch: "amd64" | |
| - distro: "ubuntu" | |
| release: "noble" | |
| arch: "amd64" | |
| container: | |
| image: ${{ matrix.distro }}:${{ matrix.release }} | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - name: Install dependencies | |
| run: | | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install devscripts dpkg-dev debhelper equivs | |
| - name: Bump version | |
| run: | | |
| export DEBEMAIL='maintainers@faucet.nz' | |
| export DEBFULLNAME='Faucet Maintainers' | |
| debchange -b "Test release" | |
| - name: Build package | |
| run: | | |
| mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | |
| dpkg-buildpackage -b -us -uc -rfakeroot | |
| debian-package-other: | |
| name: "${{ matrix.distro }} ${{ matrix.release }} ${{ matrix.arch }}" | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| include: | |
| - distro: "debian" | |
| release: "bookworm" | |
| image: "bookworm" | |
| arch: "armv7" | |
| - distro: "debian" | |
| release: "bookworm" | |
| image: "bookworm" | |
| arch: "aarch64" | |
| - distro: "debian" | |
| release: "trixie" | |
| image: "none" | |
| arch: "none" | |
| base_image: --platform=linux/arm/v7 arm32v7/debian:trixie | |
| - distro: "debian" | |
| release: "trixie" | |
| image: "none" | |
| arch: "none" | |
| base_image: --platform=linux/arm64 arm64v8/debian:trixie | |
| - distro: "ubuntu" | |
| release: "jammy" | |
| image: "ubuntu22.04" | |
| arch: "armv7" | |
| - distro: "ubuntu" | |
| release: "jammy" | |
| image: "ubuntu22.04" | |
| arch: "aarch64" | |
| - distro: "ubuntu" | |
| release: "noble" | |
| image: "ubuntu24.04" | |
| arch: "armv7" | |
| - distro: "ubuntu" | |
| release: "noble" | |
| image: "ubuntu24.04" | |
| arch: "aarch64" | |
| steps: | |
| - name: Checkout repo | |
| uses: actions/checkout@v4 | |
| - uses: uraimo/run-on-arch-action@v3 | |
| name: Build artifact | |
| id: build | |
| with: | |
| arch: ${{ matrix.arch }} | |
| distro: ${{ matrix.image }} | |
| base_image: ${{ matrix.base_image }} | |
| shell: /bin/bash | |
| install: | | |
| apt-get update | |
| apt-get -y upgrade | |
| apt-get -y install devscripts dpkg-dev debhelper equivs | |
| run: | | |
| export DEBEMAIL='maintainers@faucet.nz' | |
| export DEBFULLNAME='Faucet Maintainers' | |
| mkdir -p /build | |
| cp -r ${GITHUB_WORKSPACE} /build/package | |
| cd /build/package | |
| debchange -b "Test release" | |
| mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | |
| dpkg-buildpackage -b -us -uc -rfakeroot |