-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add schedule for hw observer integration tests (#2)
* Add schedule for hw observer integration tests
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -72,6 +72,18 @@ jobs: | |
ref: master | ||
wait_interval: 60 | ||
|
||
- name: COS integration tests for hardware-observer-operator | ||
uses: convictional/[email protected] | ||
id: hardware-observer-operator-integration | ||
if: ${{ always() }} | ||
with: | ||
owner: canonical | ||
repo: hardware-observer-operator | ||
github_token: ${{ secrets.GHA_WORKFLOW_TRIGGER }} | ||
workflow_file_name: cos_integration.yaml | ||
ref: master | ||
wait_interval: 60 | ||
|
||
- name: Tests for charm-juju-backup-all | ||
uses: convictional/[email protected] | ||
id: charm-juju-backup-all | ||
|
@@ -188,6 +200,9 @@ jobs: | |
if [ "${{ steps.hardware-observer-operator.outcome }}" != "success" ]; then | ||
failed_tests+="[hardware-observer-operator](https://github.com/canonical/hardware-observer-operator/actions), " | ||
fi | ||
if [ "${{ steps.hardware-observer-operator-integration.outcome }}" != "success" ]; then | ||
failed_tests+="[hardware-observer-operator-integration](https://github.com/canonical/hardware-observer-operator/actions), " | ||
fi | ||
if [ "${{ steps.charm-juju-backup-all.outcome }}" != "success" ]; then | ||
failed_tests+="[charm-juju-backup-all](https://github.com/canonical/charm-juju-backup-all/actions), " | ||
fi | ||
|