-
Notifications
You must be signed in to change notification settings - Fork 256
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add periodic jobs for optional tests and release branches
This adds more github workflows, namely periodic jobs for the release branches with the required e2e tests and periodic jobs for the optional e2e tests for main and release branches. Signed-off-by: Lennart Jern <[email protected]>
- Loading branch information
Showing
7 changed files
with
132 additions
and
1 deletion.
There are no files selected for viewing
25 changes: 25 additions & 0 deletions
25
.github/workflows/e2e-test-optional-periodic-release-0.5.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Periodic E2E Test Optional release-0.5 | ||
|
||
on: | ||
schedule: | ||
# Run every day at 05:20 UTC (it is recommended to avoid running at the start of the hour) | ||
- cron: '20 5 * * *' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
periodic-e2e-test-optional: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bmc-protocol: | ||
- redfish | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} | ||
ginkgo-focus: upgrade | ||
ref: release-0.5 | ||
permissions: | ||
contents: read |
25 changes: 25 additions & 0 deletions
25
.github/workflows/e2e-test-optional-periodic-release-0.6.yml
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
name: Periodic E2E Test Optional release-0.6 | ||
|
||
on: | ||
schedule: | ||
# Run every day at 04:50 UTC (it is recommended to avoid running at the start of the hour) | ||
- cron: '50 4 * * *' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
periodic-e2e-test-optional: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bmc-protocol: | ||
- redfish | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} | ||
ginkgo-focus: upgrade | ||
ref: release-0.6 | ||
permissions: | ||
contents: read |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Periodic E2E Test Optional | ||
|
||
on: | ||
schedule: | ||
# Run every day at 04:20 UTC (it is recommended to avoid running at the start of the hour) | ||
- cron: '20 4 * * *' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
periodic-e2e-test-optional: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bmc-protocol: | ||
- redfish | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} | ||
ginkgo-focus: upgrade | ||
permissions: | ||
contents: read |
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Periodic E2E Test release-0.5 | ||
|
||
on: | ||
schedule: | ||
# Run every day at 03:20 UTC (it is recommended to avoid running at the start of the hour) | ||
- cron: '20 3 * * *' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
periodic-e2e-test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bmc-protocol: | ||
- redfish | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} | ||
ref: release-0.5 | ||
permissions: | ||
contents: read |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Periodic E2E Test release-0.6 | ||
|
||
on: | ||
schedule: | ||
# Run every day at 02:50 UTC (it is recommended to avoid running at the start of the hour) | ||
- cron: '50 2 * * *' | ||
|
||
permissions: {} | ||
|
||
jobs: | ||
periodic-e2e-test: | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
bmc-protocol: | ||
- redfish | ||
- redfish-virtualmedia | ||
- ipmi | ||
uses: ./.github/workflows/e2e-test.yml | ||
with: | ||
bmc-protocol: ${{ matrix.bmc-protocol }} | ||
ref: release-0.6 | ||
permissions: | ||
contents: read |
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