From 8fb754c011019b8a6551f8ece536d7d24d89cf08 Mon Sep 17 00:00:00 2001 From: EduardGomezEscandell Date: Fri, 10 Nov 2023 12:39:28 +0100 Subject: [PATCH] Reordered Matrix definition Almost irrelevant change, it changes the name of the workflow: - Before: Go Quality Checks (windows, windows-agent) - After: Go Quality Checks (windows-agent, windows) This means that when there is no space, Github will display: - Before: Go Quality Checks (windows, ... - After: Go Quality Checks (windows-ag... Small change, but the module is usually more relevant than the platform. --- .github/workflows/qa.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/qa.yaml b/.github/workflows/qa.yaml index da4f3f967..6c01a1a67 100644 --- a/.github/workflows/qa.yaml +++ b/.github/workflows/qa.yaml @@ -16,7 +16,6 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, windows] subproject: [ "agentapi", "common", @@ -27,6 +26,7 @@ jobs: "windows-agent", "wsl-pro-service", ] + os: [ubuntu, windows] exclude: # Skipping because it only builds on Linux (uses syscall.Kill()) - os: windows @@ -126,8 +126,8 @@ jobs: strategy: fail-fast: false matrix: - os: [ubuntu, windows] package: ["p4w_ms_store", "ubuntupro"] + os: [ubuntu, windows] include: # We'll be able to run this on Linux eventually and there are gotchas already solved here # such as the dependency on xvfb since ubuntu runners on GH don't have graphical capabilities.