Skip to content

Test package building for specific distributions #709

Test package building for specific distributions

Test package building for specific distributions #709

Workflow file for this run

---
name: 'Test package building for specific distributions'
on:
schedule:
- cron: '0 1 * * *'
permissions: # least privileges, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions
contents: read
jobs:
build:
name: build.sh
if: ${{ vars.SCHEDULED_JOBS_BUILDER }}
# on a ubuntu-20.04 VM
runs-on: ubuntu-20.04
strategy:
matrix:
product: ['authoritative', 'recursor', 'dnsdist']
os:
- centos-7
- ubuntu-bionic
- el-8
- centos-8-stream
- centos-9-stream
- ubuntu-kinetic
- ubuntu-lunar
- debian-bookworm
- amazon-2023
fail-fast: false
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0 # for correct version numbers
submodules: recursive
# this builds packages and runs our unit test (make check)
- run: builder/build.sh -v -m ${{ matrix.product }} ${{ matrix.os }}
- name: Get version number
run: 'echo ::set-output name=version::$(readlink builder/tmp/latest)'
id: getversion
- name: Upload packages
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.product }}-${{ matrix.os }}-${{ steps.getversion.outputs.version }}
path: built_pkgs/
retention-days: 7