From 5b5bc5986d1e2e2bd5cc088df1bf96596572ca22 Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Ruttala Date: Wed, 29 Jan 2025 17:28:31 +0000 Subject: [PATCH 1/5] fix: test automated fleet runners --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b2e927f7..0be448b0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,9 +45,7 @@ qemu: CONFIG: local TARGET: //qemu/... tags: - - arm64 - - linux - - metal + - fleet-automated rules: - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train" -- GitLab From abac0c4725fe83167ba59a0bf40f1eabe1fabbca Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Ruttala Date: Thu, 30 Jan 2025 09:16:36 +0000 Subject: [PATCH 2/5] feat: remove rules for testing --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 0be448b0..bd26fcf2 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,9 +46,9 @@ qemu: TARGET: //qemu/... tags: - fleet-automated - rules: - - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train" + # rules: + # - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH + # - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train" oci: stage: .pre -- GitLab From 166d81370e2437ad65fe598b4bc4bec8acee4d7a Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Ruttala Date: Thu, 30 Jan 2025 09:17:43 +0000 Subject: [PATCH 3/5] feat: update rules for testing --- .gitlab-ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bd26fcf2..e6be2880 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,9 +46,9 @@ qemu: TARGET: //qemu/... tags: - fleet-automated - # rules: - # - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH - # - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_train" + rules: + - if: $CI_COMMIT_BRANCH + - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_request" oci: stage: .pre -- GitLab From e2592a3448c5fc927e3138b4f05e451d9ff6732f Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Ruttala Date: Thu, 30 Jan 2025 09:20:48 +0000 Subject: [PATCH 4/5] feat: evaluate rules --- .gitlab-ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index e6be2880..099e2bf8 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,9 +46,7 @@ qemu: TARGET: //qemu/... tags: - fleet-automated - rules: - - if: $CI_COMMIT_BRANCH - - if: $CI_MERGE_REQUEST_EVENT_TYPE == "merge_request" + oci: stage: .pre -- GitLab From d3dc0ea49b225bb620d61913ec3c1d55d245fd3b Mon Sep 17 00:00:00 2001 From: Santhosh Kumar Ruttala Date: Thu, 30 Jan 2025 16:32:51 +0000 Subject: [PATCH 5/5] fix: tags --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 099e2bf8..567c2ed6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -45,7 +45,9 @@ qemu: CONFIG: local TARGET: //qemu/... tags: - - fleet-automated + - arm64 + - linux + - kvm oci: -- GitLab