From 9af6bf5a1379cd21848d070e17843392ed7d0d71 Mon Sep 17 00:00:00 2001 From: Aparna Michael Date: Wed, 18 Dec 2024 20:26:54 +0530 Subject: [PATCH] Updated the yal file to run in only latest version --- .github/workflows/run-regression-tests.yml | 40 ++++++++++++++++------ 1 file changed, 29 insertions(+), 11 deletions(-) diff --git a/.github/workflows/run-regression-tests.yml b/.github/workflows/run-regression-tests.yml index 14b10112..a3f450fc 100755 --- a/.github/workflows/run-regression-tests.yml +++ b/.github/workflows/run-regression-tests.yml @@ -8,26 +8,44 @@ on: jobs: build: + runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: - runtime: [ linux, mac ] + runtime: [ linux, mac, windows ] + include: + - runtime: linux + os: ubuntu-latest + reportName: linux-test-report + - runtime: mac + os: macOS-latest + reportName: mac-test-report + - runtime: windows + os: windows-latest + reportName: windows-test-report + +# jobs: +# build: +# strategy: +# fail-fast: false +# matrix: +# runtime: [ linux, mac, windows ] # Removing windows as a standard run flavor runtime: [ linux, mac, windows ] - targetVSCode: [previous, latest ] + # targetVSCode: [previous, latest ] # As Vscode 1.79 and 1.78 are the only support version for current release, running test with only latest,previous #Enable it in future for multiple releases as applicable targetVSCode: [ previousMinusOne, previous, latest ] - include: - - runtime: linux - os: ubuntu-latest + # include: + # - runtime: linux + # os: ubuntu-latest - - runtime: mac - os: macOS-13 + # - runtime: mac + # os: macOS-13 - - runtime: windows - os: windows-latest + # - runtime: windows + # os: windows-latest - name: Build Plugin - runs-on: ${{ matrix.os }} + # name: Build Plugin + # runs-on: ${{ matrix.os }} steps: # Checkout the eclipse plugin repository.