From 1beb05f7ca10cf5f901f615c1cb7a1a5d1e10ce4 Mon Sep 17 00:00:00 2001 From: Mauro Morales Date: Thu, 13 Jul 2023 14:38:27 +0200 Subject: [PATCH] Make latest be ubuntu too Signed-off-by: Mauro Morales --- .github/workflows/reusable-upgrade-latest-test.yaml | 3 +-- tests/upgrade_latest_cli_test.go | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/reusable-upgrade-latest-test.yaml b/.github/workflows/reusable-upgrade-latest-test.yaml index db918878d8..8c8ca75694 100644 --- a/.github/workflows/reusable-upgrade-latest-test.yaml +++ b/.github/workflows/reusable-upgrade-latest-test.yaml @@ -18,8 +18,7 @@ jobs: # The default value is 'false' latest: true repository: kairos-io/kairos - # why is opensuse-leap fixed here if the flavor can be passed? - fileName: '*opensuse-leap-v*.iso' + fileName: '*ubuntu-v*.iso' out-file-path: last-release - uses: actions/upload-artifact@v3 with: diff --git a/tests/upgrade_latest_cli_test.go b/tests/upgrade_latest_cli_test.go index f521aa17e2..38bcf53e89 100644 --- a/tests/upgrade_latest_cli_test.go +++ b/tests/upgrade_latest_cli_test.go @@ -79,7 +79,7 @@ var _ = Describe("k3s upgrade manual test", Label("upgrade-latest-with-cli"), fu v, _ = vm.Sudo(getVersionCmd) return v // TODO: Add regex semver check here - }, 60*time.Minute, 10*time.Second).ShouldNot(Equal(currentVersion)) + }, 30*time.Minute, 10*time.Second).ShouldNot(Equal(currentVersion)) }) }) })