|
8 | 8 |
|
9 | 9 | jobs:
|
10 | 10 | hpp-fcl-pip:
|
11 |
| - name: "CI on ${{ matrix.os }} / python ${{ matrix.python-version }} with pip" |
12 |
| - runs-on: "${{ matrix.os }}" |
| 11 | + name: "CI on ${{ matrix.os }} / py ${{ matrix.python-version }} with pip" |
| 12 | + runs-on: "${{ matrix.os }}-latest" |
13 | 13 |
|
14 | 14 | strategy:
|
15 | 15 | fail-fast: false
|
16 | 16 | matrix:
|
17 |
| - os: ["ubuntu-latest", "macos-latest"] |
18 |
| - python-version: ["3.8", "3.9", "3.10", "3.11"] |
| 17 | + os: ["ubuntu", "macos"] |
| 18 | + python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] |
19 | 19 | steps:
|
20 |
| - - uses: actions/checkout@v3 |
| 20 | + - uses: actions/checkout@v4 |
21 | 21 | with:
|
22 | 22 | submodules: 'true'
|
23 | 23 | - uses: actions/setup-python@v4
|
24 | 24 | with:
|
25 | 25 | python-version: ${{ matrix.python-version }}
|
26 | 26 | - run: python -m pip install -U pip
|
27 |
| - - run: python -m pip install cmeel-assimp cmeel-octomap eigenpy[build] |
28 |
| - - run: echo "CMAKE_PREFIX_PATH=$(python -m cmeel cmake)" >> $GITHUB_ENV |
29 |
| - - run: echo "LD_LIBRARY_PATH=$(python -m cmeel lib)" >> $GITHUB_ENV |
30 |
| - - run: cmake -B build -S . |
| 27 | + - run: python -m pip install cmeel-assimp cmeel-octomap cmeel-qhull eigenpy[build] |
| 28 | + - run: echo "CMAKE_PREFIX_PATH=$(cmeel cmake)" >> $GITHUB_ENV |
| 29 | + - run: cmake -B build -S . -DHPP_FCL_HAS_QHULL=ON |
31 | 30 | - run: cmake --build build -j 4
|
32 | 31 | - run: cmake --build build -t test
|
0 commit comments