Skip to content

Commit

Permalink
ci: Fix environment name
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisv committed Oct 4, 2024
1 parent c166756 commit 170fda0
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/macos-linux-windows-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ concurrency:

jobs:
eigenpy-pixi:
name: ${{ matrix.os }} - Env ${{ matrix.environment }} ${{ matrix.build_type }} ${{ matrix.cxx_options }}
name: ${{ matrix.os }} - Env ${{ matrix.environment }} ${{ matrix.build_type }} ${{ matrix.cxx_options }} ${{ matrix.compiler }}
runs-on: ${{ matrix.os }}
env:
CCACHE_BASEDIR: "${GITHUB_WORKSPACE}"
Expand All @@ -37,7 +37,7 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, macos-14]
environment: [all, all_py39]
environment: [all, all-py39]
build_type: [Release, Debug]
cxx_options: ['', '-mavx2']

Expand Down Expand Up @@ -83,12 +83,11 @@ jobs:
pixi run test
- name: Build EigenPy [Windows]
shell: pixi run bash -el {0}
if: contains(matrix.os, 'windows')
env:
CMAKE_BUILD_PARALLEL_LEVEL: 4
CC: ${{ matrix.compiler }}
CXX: ${{ matrix.compiler }}
CMAKE_BUILD_PARALLEL_LEVEL: 4
run: |
pixi run test
Expand Down

0 comments on commit 170fda0

Please sign in to comment.