From b022e8dfb039399cc5bf30bc6deda29ee87a76c7 Mon Sep 17 00:00:00 2001 From: Sudeep Bhandari Date: Mon, 18 Mar 2024 12:38:57 +0545 Subject: [PATCH] Add schedule for hw observer integration tests (#2) * Add schedule for hw observer integration tests --- .github/workflows/weekly_tests.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/weekly_tests.yaml b/.github/workflows/weekly_tests.yaml index 6e52a1f..360d5b3 100644 --- a/.github/workflows/weekly_tests.yaml +++ b/.github/workflows/weekly_tests.yaml @@ -72,6 +72,18 @@ jobs: ref: master wait_interval: 60 + - name: COS integration tests for hardware-observer-operator + uses: convictional/trigger-workflow-and-wait@v1.6.5 + 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/trigger-workflow-and-wait@v1.6.5 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