From 8609a5b5c7eec88ad855a7eb0f19f919f1fadb5f Mon Sep 17 00:00:00 2001 From: Ed Bartosh Date: Fri, 7 Jan 2022 18:55:08 +0200 Subject: [PATCH] e2e workflows: schedule nightly builds Signed-off-by: Ed Bartosh --- .github/workflows/e2e-fpga.yml | 2 ++ .github/workflows/e2e-qat.yml | 2 ++ .github/workflows/e2e-sgx.yml | 2 ++ 3 files changed, 6 insertions(+) diff --git a/.github/workflows/e2e-fpga.yml b/.github/workflows/e2e-fpga.yml index a1968c4e..2979ca65 100644 --- a/.github/workflows/e2e-fpga.yml +++ b/.github/workflows/e2e-fpga.yml @@ -6,6 +6,8 @@ on: description: 'Images to build before provisioning pull on worker' required: true default: 'intel-fpga-plugin:devel intel-fpga-initcontainer:devel intel-fpga-admissionwebhook:devel opae-nlb-demo:devel' + schedule: + - cron: '0 3 * * *' env: IMAGES: ${{ github.event.inputs.images }} diff --git a/.github/workflows/e2e-qat.yml b/.github/workflows/e2e-qat.yml index 773cf6c8..244ac809 100644 --- a/.github/workflows/e2e-qat.yml +++ b/.github/workflows/e2e-qat.yml @@ -6,6 +6,8 @@ on: description: 'Images to build before provisioning pull on worker' required: true default: 'intel-qat-plugin:devel crypto-perf:devel' + schedule: + - cron: '20 3 * * *' env: IMAGES: ${{ github.event.inputs.images }} diff --git a/.github/workflows/e2e-sgx.yml b/.github/workflows/e2e-sgx.yml index 87453bf2..415005e1 100644 --- a/.github/workflows/e2e-sgx.yml +++ b/.github/workflows/e2e-sgx.yml @@ -6,6 +6,8 @@ on: description: 'Images to build before provisioning pull on worker' required: true default: 'intel-sgx-plugin intel-sgx-initcontainer intel-sgx-admissionwebhook' + schedule: + - cron: '40 3 * * *' env: IMAGES: ${{ github.event.inputs.images }}