Various daily checks #705
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: "Various daily checks" | |
on: | |
schedule: | |
- cron: '34 4 * * *' | |
permissions: # least privileges, see https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#permissions | |
contents: read | |
env: | |
CLANG_VERSION: '12' | |
jobs: | |
el7-devtoolset: | |
if: ${{ vars.SCHEDULED_MISC_DAILIES }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Check whether a newer devtoolset exists | |
run: | | |
if docker run --rm centos:7 bash -c 'yum install -y centos-release-scl-rh && yum info devtoolset-12-gcc-c++' | |
then | |
echo "::warning file=builder-support/dockerfiles/Dockerfile.rpmbuild::A newer devtoolset exists. Please edit builder-support/dockerfiles/Dockerfile.rpmbuild, builder-support/dockerfiles/Dockerfile.rpmbuild, and .github/workflows/dailies.yml" | |
exit 1 | |
else | |
echo "::notice ::No newer devtoolset exists (good)" | |
exit 0 | |
fi | |
check-debian-autoremovals: | |
if: ${{ vars.SCHEDULED_MISC_DAILIES }} | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
submodules: recursive | |
- name: Check if Debian is about to toss us off a balcony | |
run: ./build-scripts/check-debian-autoremovals.py | |
coverity-auth: | |
name: coverity scan of the auth | |
if: ${{ vars.SCHEDULED_MISC_DAILIES }} | |
uses: PowerDNS/pdns/.github/workflows/coverity.yml@master | |
with: | |
product: 'authoritative' | |
secrets: | |
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }} | |
COVERITY_EMAIL: ${{ secrets.COVERITY_EMAIL }} | |
coverity-dnsdist: | |
name: coverity scan of dnsdist | |
if: ${{ vars.SCHEDULED_MISC_DAILIES }} | |
uses: PowerDNS/pdns/.github/workflows/coverity.yml@master | |
with: | |
product: 'dnsdist' | |
secrets: | |
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }} | |
COVERITY_EMAIL: ${{ secrets.COVERITY_EMAIL }} | |
coverity-rec: | |
name: coverity scan of the rec | |
if: ${{ vars.SCHEDULED_MISC_DAILIES }} | |
uses: PowerDNS/pdns/.github/workflows/coverity.yml@master | |
with: | |
product: 'recursor' | |
secrets: | |
COVERITY_TOKEN: ${{ secrets.COVERITY_TOKEN }} | |
COVERITY_EMAIL: ${{ secrets.COVERITY_EMAIL }} |