From 5b896b4681a279c3e57215c850c0933263ac2fde Mon Sep 17 00:00:00 2001 From: Clint Branham Date: Sun, 23 Aug 2026 09:08:54 -0500 Subject: [PATCH] ci: integration jobs run on the psproxmoxve ARC scale set ARC scale sets match runs-on by scale-set name, not by label list. --- .github/workflows/integration-tests.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 305c7e4..eab54db 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -109,7 +109,7 @@ jobs: provision: if: inputs.skip_provision != true needs: [build, container-image] - runs-on: [self-hosted, proxmox, integration] + runs-on: psproxmoxve timeout-minutes: 45 container: image: ghcr.io/goodolclint/psproxmoxve-integration:${{ github.sha }} @@ -143,7 +143,7 @@ jobs: # ── Integration tests (self-hosted, per PVE version) ──────────────── test: needs: [build, provision] - runs-on: [self-hosted, proxmox, integration] + runs-on: psproxmoxve timeout-minutes: 20 container: image: ghcr.io/goodolclint/psproxmoxve-integration:${{ github.sha }} @@ -188,7 +188,7 @@ jobs: cleanup: needs: [provision, test] if: always() && needs.provision.result != 'skipped' && github.actor != 'dependabot[bot]' - runs-on: [self-hosted, proxmox, integration] + runs-on: psproxmoxve timeout-minutes: 15 container: image: ghcr.io/goodolclint/psproxmoxve-integration:${{ github.sha }}