daily e2e tests for libvirt #237
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
# (C) Copyright Confidential Containers Contributors 2023. | |
# SPDX-License-Identifier: Apache-2.0 | |
# | |
# Daily run the e2e tests for libvirt. | |
--- | |
name: daily e2e tests for libvirt | |
on: | |
schedule: | |
# Runs "at 04:15(UTC time) every day" (see https://crontab.guru) | |
# will base on default branch `main` | |
- cron: '15 4 * * *' | |
workflow_dispatch: | |
jobs: | |
e2e: | |
uses: ./.github/workflows/e2e_run_all.yaml | |
with: | |
caa_image_tag: latest | |
git_ref: refs/heads/main | |
podvm_image_tag: latest | |
registry: ghcr.io/${{ github.repository_owner }} | |
secrets: inherit |