Skip to content

Commit a1ddea6

Browse files
committed
pixi: Avoid to run Build EigenPy twice
1 parent 1ec8176 commit a1ddea6

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/macos-linux-windows-conda.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: CI - OSX/Linux/Windows via Pixi
1+
name: CI - MacOS/Linux/Windows via Pixi
22

33
on:
44
push:
@@ -78,9 +78,9 @@ jobs:
7878
cache: true
7979
environments: ${{ matrix.environment }}
8080

81-
- name: Build EigenPy
81+
- name: Build EigenPy [MacOS/Linux]
8282
shell: pixi run bash -el {0}
83-
if: contains(${{ matrix.os }}, 'ubuntu') || contains(${{ matrix.os }}, macos)
83+
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
8484
env:
8585
CMAKE_BUILD_PARALLEL_LEVEL: 4
8686
run: |
@@ -90,9 +90,9 @@ jobs:
9090
export CXXFLAGS=${{ matrix.cxx_options }}
9191
pixi run -e ${{ matrix.environment }} test
9292
93-
- name: Build EigenPy
93+
- name: Build EigenPy [Windows]
9494
shell: pixi run bash -el {0}
95-
if: contains(${{ matrix.os }}, 'windows')
95+
if: contains(matrix.os, 'windows')
9696
env:
9797
CC: ${{ matrix.compiler }}
9898
CXX: ${{ matrix.compiler }}

0 commit comments

Comments
 (0)