nightly #907
This file contains hidden or 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: nightly | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '0 20 * * *' | |
| jobs: | |
| benchmark: | |
| uses: ./.github/workflows/benchmark.yml | |
| secrets: inherit | |
| with: | |
| setup: '' # default behavior | |
| jammy: | |
| uses: ./.github/workflows/jammy.yml | |
| # TODO: re-enable once Launchpad PPA flakiness is resolved (pre-built CI image planned). | |
| # focal: | |
| # uses: ./.github/workflows/focal.yml | |
| # bionic: | |
| # needs: [check-if-docs-only] | |
| # if: ${{ needs.check-if-docs-only.outputs.only-docs-changed == 'false' }} | |
| # uses: ./.github/workflows/task-unit-test.yml | |
| # with: | |
| # container: ubuntu:bionic | |
| bullseye: | |
| uses: ./.github/workflows/debian11.yml | |
| # amazonlinux2: | |
| # needs: [check-if-docs-only] | |
| # if: ${{ needs.check-if-docs-only.outputs.only-docs-changed == 'false' }} | |
| # uses: ./.github/workflows/amazon2.yml | |
| mariner2: | |
| uses: ./.github/workflows/mariner2.yml | |
| rocky8: | |
| uses: ./.github/workflows/rocky8.yml | |
| rocky9: | |
| uses: ./.github/workflows/rocky9.yml | |
| alpine3: | |
| uses: ./.github/workflows/alpine3.yml | |
| macos: | |
| uses: ./.github/workflows/macos.yml | |
| arm: | |
| uses: ./.github/workflows/arm.yml | |
| secrets: inherit | |
| coverage: | |
| uses: ./.github/workflows/coverage.yml | |
| secrets: inherit | |
| sanitizer: | |
| uses: ./.github/workflows/task-unit-test.yml | |
| with: | |
| san: address | |
| secrets: inherit | |
| notify-on-failure: | |
| needs: | |
| - benchmark | |
| - jammy | |
| # - focal | |
| # - bionic | |
| - bullseye | |
| # - amazonlinux2 | |
| - mariner2 | |
| - rocky8 | |
| - rocky9 | |
| - alpine3 | |
| - macos | |
| - arm | |
| - coverage | |
| - sanitizer | |
| runs-on: ubuntu-latest | |
| if: failure() | |
| steps: | |
| - name: Notify on failure | |
| uses: slackapi/slack-github-action@v3 | |
| with: | |
| webhook: ${{ secrets.SLACK_WEBHOOK_URL_NIGHTLY_FAILURE }} | |
| webhook-type: incoming-webhook | |
| payload: '{ "failed_run": "${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}", "repository": "${{github.repository}}" }' |