From 27526a1cdf76e95f490078773c04939798924428 Mon Sep 17 00:00:00 2001 From: Silvio Traversaro Date: Fri, 4 Oct 2024 11:32:51 +0200 Subject: [PATCH] Only run tests were they are currently working --- .github/workflows/test-pixi.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-pixi.yml b/.github/workflows/test-pixi.yml index a577985..8d70265 100644 --- a/.github/workflows/test-pixi.yml +++ b/.github/workflows/test-pixi.yml @@ -14,8 +14,7 @@ jobs: os: [ ubuntu-22.04, macos-latest, - # Disabled until https://github.com/robotology/gz-sim-yarp-plugins/issues/205 is fixed - # windows-2019 + windows-2019 ] pixi_env: [ default, @@ -42,5 +41,11 @@ jobs: - name: Print pixi info run: pixi info + - name: Build the project + run: pixi run -e ${{ matrix.pixi_env }} build + + # Windows disabled due to https://github.com/robotology/gz-sim-yarp-plugins/issues/205 + # macOS on Ionic disabled due to https://github.com/robotology/gz-sim-yarp-plugins/issues/215 - name: Run tests + if: !contains(matrix.os, 'windows') && !(contains(matrix.os, 'macos') && matrix.pixi_env == 'ionic') run: pixi run -e ${{ matrix.pixi_env }} test