e2e: Install workflow before starting continuous rolling-updates of runners

This commit is contained in:
Yusuke Kuoka 2022-08-27 07:08:56 +00:00
parent c143fd50b5
commit 4925880e5e
1 changed files with 16 additions and 16 deletions

View File

@ -207,6 +207,14 @@ func TestE2E(t *testing.T) {
}
}
t.Run("Install workflow", func(t *testing.T) {
env.installActionsWorkflow(t, RunnerSets, testID)
})
if t.Failed() {
return
}
ctx, cancel := context.WithCancel(context.Background())
go func() {
for i := 1; ; i++ {
@ -228,14 +236,6 @@ func TestE2E(t *testing.T) {
cancel()
})
t.Run("Install workflow", func(t *testing.T) {
env.installActionsWorkflow(t, RunnerSets, testID)
})
if t.Failed() {
return
}
t.Run("Verify workflow run result", func(t *testing.T) {
env.verifyActionsWorkflowRun(t, testID)
})
@ -307,6 +307,14 @@ func TestE2E(t *testing.T) {
}
}
t.Run("Install workflow", func(t *testing.T) {
env.installActionsWorkflow(t, RunnerDeployments, testID)
})
if t.Failed() {
return
}
ctx, cancel := context.WithCancel(context.Background())
go func() {
for i := 1; ; i++ {
@ -328,14 +336,6 @@ func TestE2E(t *testing.T) {
cancel()
})
t.Run("Install workflow", func(t *testing.T) {
env.installActionsWorkflow(t, RunnerDeployments, testID)
})
if t.Failed() {
return
}
t.Run("Verify workflow run result", func(t *testing.T) {
env.verifyActionsWorkflowRun(t, testID)
})