v1.0.2 #7
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 debian packages | |
on: | |
release: | |
types: | |
- published | |
env: | |
DEBIAN_FRONTEND: noninteractive | |
jobs: | |
debian-package-amd64: | |
name: "${{ matrix.distro }} ${{ matrix.release }} ${{ matrix.arch }}" | |
runs-on: ubuntu-latest | |
environment: | |
name: "release" | |
strategy: | |
matrix: | |
include: | |
- distro: "debian" | |
release: "buster" | |
arch: "amd64" | |
- distro: "debian" | |
release: "bullseye" | |
arch: "amd64" | |
- distro: "debian" | |
release: "bookworm" | |
arch: "amd64" | |
- distro: "ubuntu" | |
release: "focal" | |
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='[email protected]' | |
export DEBFULLNAME='Faucet Maintainers' | |
debchange --newversion ${{ github.event.release.tag_name }} -b "New upstream release" | |
- name: Build package | |
run: | | |
mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | |
dpkg-buildpackage -b -us -uc -rfakeroot | |
- name: Store package | |
run: | | |
artifact_dir=${{ matrix.distro }}_${{ matrix.release }} | |
mkdir -p packages/${artifact_dir} | |
cp ../*.deb packages/${artifact_dir} | |
- name: Publish package on packagecloud | |
uses: faucetsdn/action-packagecloud-upload-debian-packages@v1 | |
with: | |
path: packages/ | |
repo: faucetsdn/faucet-test | |
token: ${{ secrets.PACKAGECLOUD_TOKEN }} | |
debian-package-other: | |
name: "${{ matrix.distro }} ${{ matrix.release }} ${{ matrix.arch }}" | |
runs-on: ubuntu-latest | |
environment: | |
name: "release" | |
strategy: | |
matrix: | |
include: | |
- distro: "debian" | |
release: "buster" | |
image: "buster" | |
arch: "armv7" | |
- distro: "debian" | |
release: "buster" | |
image: "buster" | |
arch: "aarch64" | |
- distro: "debian" | |
release: "bullseye" | |
image: "bullseye" | |
arch: "armv7" | |
- distro: "debian" | |
release: "bullseye" | |
image: "bullseye" | |
arch: "aarch64" | |
- distro: "debian" | |
release: "bookworm" | |
image: "bookworm" | |
arch: "armv7" | |
- distro: "debian" | |
release: "bookworm" | |
image: "bookworm" | |
arch: "aarch64" | |
- distro: "ubuntu" | |
release: "focal" | |
image: "ubuntu20.04" | |
arch: "armv7" | |
- distro: "ubuntu" | |
release: "focal" | |
image: "ubuntu20.04" | |
arch: "aarch64" | |
- distro: "ubuntu" | |
release: "jammy" | |
image: "ubuntu22.04" | |
arch: "armv7" | |
- distro: "ubuntu" | |
release: "jammy" | |
image: "ubuntu22.04" | |
arch: "aarch64" | |
- distro: "raspbian" | |
release: "buster" | |
image: "buster" | |
arch: "armv7" | |
- distro: "raspbian" | |
release: "buster" | |
image: "buster" | |
arch: "aarch64" | |
- distro: "raspbian" | |
release: "bullseye" | |
image: "bullseye" | |
arch: "armv7" | |
- distro: "raspbian" | |
release: "bullseye" | |
image: "bullseye" | |
arch: "aarch64" | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v4 | |
- uses: uraimo/[email protected] | |
name: Build artifact | |
id: build | |
with: | |
arch: ${{ matrix.arch }} | |
distro: ${{ matrix.image }} | |
shell: /bin/bash | |
install: | | |
apt-get update | |
apt-get -y upgrade | |
apt-get -y install devscripts dpkg-dev debhelper equivs | |
run: | | |
export DEBEMAIL='[email protected]' | |
export DEBFULLNAME='Faucet Maintainers' | |
mkdir -p /build | |
cp -r ${GITHUB_WORKSPACE} /build/package | |
cd /build/package | |
debchange --newversion ${{ github.event.release.tag_name }} -b "New upstream release" | |
mk-build-deps -i -r -t 'apt-get -f -y --force-yes' | |
dpkg-buildpackage -b -us -uc -rfakeroot | |
artifact_dir=${{ matrix.distro }}_${{ matrix.release }} | |
mkdir -p "${GITHUB_WORKSPACE}/packages/${artifact_dir}" | |
cp ../*.deb "${GITHUB_WORKSPACE}/packages/${artifact_dir}" | |
- name: Publish package on packagecloud | |
uses: faucetsdn/action-packagecloud-upload-debian-packages@v1 | |
with: | |
path: packages/ | |
repo: faucetsdn/faucet-test | |
token: ${{ secrets.PACKAGECLOUD_TOKEN }} |