From: Pieter Lexis Date: Wed, 16 Dec 2020 10:56:41 +0000 (+0100) Subject: Add "old OS" builders fro EL7 and Ubuntu 18.04 X-Git-Tag: rec-4.5.0-alpha1~28^2~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cace17daeca631645babb194c41aca4432c1a3f3;p=thirdparty%2Fpdns.git Add "old OS" builders fro EL7 and Ubuntu 18.04 --- diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml new file mode 100644 index 0000000000..2644f8720a --- /dev/null +++ b/.github/workflows/builder.yml @@ -0,0 +1,27 @@ +--- +name: 'Test package building for specific distributions' + +on: + push: + pull_request: + schedule: + - cron: '0 22 * * 2' + +jobs: + build: + name: Build package on older OS's + # on a ubuntu-20.04 VM + runs-on: ubuntu-20.04 + strategy: + matrix: + product: ['authoritative', 'recursor', 'dnsdist'] + os: + - centos-7 + - ubuntu-bionic + steps: + - uses: actions/checkout@v2.3.4 + with: + fetch-depth: 5 + submodules: recursive + # this builds packages and runs our unit test (make check) + - run: builder/build.sh -v -m ${{ matrix.product }} ${{ matrix.os }}