From a0ac8a28a60ee44acd565e572acdd2de186cdf23 Mon Sep 17 00:00:00 2001 From: Leandro Motta Barros Date: Tue, 30 Jul 2024 14:11:45 -0300 Subject: [PATCH] Use free runners, don't deploy anything Signed-off-by: Leandro Motta Barros Changelog-entry: Use free runners, don't deploy anything --- .github/workflows/genericx86-64.yml | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/.github/workflows/genericx86-64.yml b/.github/workflows/genericx86-64.yml index b22e6dc33..97d6c84bb 100644 --- a/.github/workflows/genericx86-64.yml +++ b/.github/workflows/genericx86-64.yml @@ -1,4 +1,4 @@ -name: Generic x86_64 (legacy MBR) +name: Generic x86_64 (legacy MBR) (No KVM) on: # With these triggers the Yocto jobs will run @@ -36,11 +36,18 @@ jobs: machine: genericx86-64-ext # Needed for testing - defaults to production environment: balena-staging.com + + # Don't deploy anything, I am interested only in the tests really + deploy-ami: false + deploy-esr: false + deploy-s3: false + deploy-hostapp: false + # Use qemu workers for testing test_matrix: > { "test_suite": ["os","cloud","hup"], "environment": ["bm.balena-dev.com"], "worker_type": ["qemu"], - "runs_on": [["self-hosted", "X64", "kvm"]] + "runs_on": [["ubuntu-latest"]] }