You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/k3s_run.yaml
+7-3Lines changed: 7 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -7,7 +7,7 @@ on:
7
7
- 'main'
8
8
workflow_dispatch:
9
9
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)
11
11
12
12
jobs:
13
13
setup_rancher:
@@ -55,7 +55,7 @@ jobs:
55
55
- name: Install K3S Version ${{ matrix.k3s_version }} & Rancher Version ${{ matrix.rancher_version }}
56
56
id: install_k3s_and_rancher
57
57
run: |
58
-
sleep 120
58
+
sleep 60
59
59
set -e
60
60
go test -timeout 30m -run ^TestE2E$ github.com/rancher/observability-e2e/installations/k3s -v -count=1 -ginkgo.v
61
61
@@ -68,9 +68,10 @@ jobs:
68
68
- name: Run Observability Charts Tests
69
69
id: run_observability_tests
70
70
run: |
71
-
sleep 60
71
+
sleep 180
72
72
set -e
73
73
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
74
75
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
75
76
76
77
- name: Run Installation Charts Tests For Backup and Restore
@@ -87,8 +88,11 @@ jobs:
87
88
sleep 60
88
89
set -e
89
90
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
90
92
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
91
94
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
92
96
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
0 commit comments