From: Peter van Dijk Date: Thu, 26 Nov 2020 10:57:40 +0000 (+0100) Subject: gh actions: build centos6 packages X-Git-Tag: rec-4.5.0-alpha1~89^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ddd9bf0bd40d9df4ebb52faba18f1ff1d57821a4;p=thirdparty%2Fpdns.git gh actions: build centos6 packages --- diff --git a/.github/workflows/builder.yml b/.github/workflows/builder.yml new file mode 100644 index 0000000000..eb0ece6f9f --- /dev/null +++ b/.github/workflows/builder.yml @@ -0,0 +1,24 @@ +name: 'Test package building for specific distributions' + +on: + push: + pull_request: + schedule: + - cron: '0 22 * * 2' + +jobs: + build: + # a centos-6 Docker container + name: centos-6 + # on a ubuntu-20.04 VM + runs-on: ubuntu-20.04 + strategy: + matrix: + product: ['authoritative', 'recursor', 'dnsdist'] + steps: + - uses: actions/checkout@v2.3.4 + with: + fetch-depth: 5 + submodules: recursive + # this builds packages for EL6, and runs our unit test (make check) + - run: builder/build.sh -v -m ${{matrix.product }} centos-6