Skip to content

Commit

Permalink
Only run tests were they are currently working
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Oct 4, 2024
1 parent 3e7400e commit 27526a1
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/test-pixi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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

0 comments on commit 27526a1

Please sign in to comment.