Skip to content

Commit c2dd139

Browse files
fix daily workflow ci runner
1 parent 2933d44 commit c2dd139

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/k3s_run.yaml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- 'main'
88
workflow_dispatch:
99
schedule:
10-
- cron: '0 1 * * *' # Runs daily at 1:00 AM UTC (6:30 AM IST)
10+
- cron: '0 4 * * *' # Runs daily at 4:00 AM UTC (9:30 AM IST)
1111

1212
jobs:
1313
setup_rancher:
@@ -55,7 +55,7 @@ jobs:
5555
- name: Install K3S Version ${{ matrix.k3s_version }} & Rancher Version ${{ matrix.rancher_version }}
5656
id: install_k3s_and_rancher
5757
run: |
58-
sleep 120
58+
sleep 60
5959
set -e
6060
go test -timeout 30m -run ^TestE2E$ github.com/rancher/observability-e2e/installations/k3s -v -count=1 -ginkgo.v
6161
@@ -68,9 +68,10 @@ jobs:
6868
- name: Run Observability Charts Tests
6969
id: run_observability_tests
7070
run: |
71-
sleep 60
71+
sleep 180
7272
set -e
7373
TEST_LABEL_FILTER=installation go test -timeout 20m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-installation-${{ matrix.k3s_version }}.txt
74+
sleep 120
7475
TEST_LABEL_FILTER=E2E go test -timeout 30m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-e2e-${{ matrix.k3s_version }}.txt
7576
7677
- name: Run Installation Charts Tests For Backup and Restore
@@ -87,8 +88,11 @@ jobs:
8788
sleep 60
8889
set -e
8990
TEST_LABEL_FILTER=beforeUpgrade go test -timeout 20m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-upgrade-${{ matrix.k3s_version }}.txt
91+
sleep 120
9092
TEST_LABEL_FILTER=E2E go test -timeout 30m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-e2e-${{ matrix.k3s_version }}.txt
93+
sleep 120
9194
TEST_LABEL_FILTER=afterUpgrade go test -timeout 20m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-upgrade-${{ matrix.k3s_version }}.txt
95+
sleep 120
9296
TEST_LABEL_FILTER=E2E go test -timeout 30m github.com/rancher/observability-e2e/tests/e2e -v -count=1 -ginkgo.v | tee ~/artifacts/test-output-e2e-${{ matrix.k3s_version }}.txt
9397
9498
- name: Run Tests and Prepare Artifact Name

0 commit comments

Comments
 (0)