From feb5587b1e5d41650f16915f9c28ca8fed427633 Mon Sep 17 00:00:00 2001 From: Pawel Gudel Date: Wed, 28 Jun 2023 00:02:23 +0200 Subject: [PATCH] Reorder matrix strategy. Is it possible to run windows jobs before ubuntu? Signed-off-by: Pawel Gudel --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8b29711746..f5d1e21e5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,13 +26,13 @@ jobs: run: | echo "separateTestsNames=$(./gradlew listTasksAsJSON -q --console=plain | tail -n 1)" >> $GITHUB_OUTPUT - test: + citest: name: citest strategy: fail-fast: false matrix: + platform: ["windows-latest", "ubuntu-latest"] jdk: [11, 17] - platform: ["ubuntu-latest", "windows-latest"] runs-on: ${{ matrix.platform }} steps: @@ -69,8 +69,8 @@ jobs: if: always() run: echo "Check the artifact ${{ matrix.platform }}-JDK${{ matrix.jdk }}-reports for detailed test results" - build: - name: build + test: + name: test needs: generate-test-list strategy: fail-fast: false