Skip to content

Commit

Permalink
Merge pull request #471 from jorisv/topic/update_cmake_ci
Browse files Browse the repository at this point in the history
Topic/update cmake ci
  • Loading branch information
jcarpent authored Nov 14, 2023
2 parents acd4389 + b04c8b4 commit eca7284
Show file tree
Hide file tree
Showing 5 changed files with 63 additions and 2 deletions.
18 changes: 17 additions & 1 deletion .github/workflows/macos-linux-conda.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ jobs:
fail-fast: false
matrix:
os: ["ubuntu-latest", "macos-latest"]
python-version: ["3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v3
Expand All @@ -22,7 +23,7 @@ jobs:
activate-environment: hpp-fcl
auto-update-conda: true
environment-file: .github/workflows/conda/conda-env.yml
python-version: "3.10"
python-version: ${{ matrix.python-version }}

- name: Install compilers on OSX
if: contains(matrix.os, 'macos')
Expand Down Expand Up @@ -60,3 +61,18 @@ jobs:
run: |
cd build
make uninstall
check:
if: always()
name: check-macos-linux-conda

needs:
- hpp-fcl-conda

runs-on: Ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
15 changes: 15 additions & 0 deletions .github/workflows/ros_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,3 +32,18 @@ jobs:
# Run industrial_ci
- uses: 'ros-industrial/industrial_ci@9f963f67ebb889792175776c5ee00134d7bb569b'
env: ${{ matrix.env }}

check:
if: always()
name: check-ros-ci

needs:
- CI

runs-on: Ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
15 changes: 15 additions & 0 deletions .github/workflows/windows-conda-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,3 +77,18 @@ jobs:
cd ..
python -c "import hppfcl"
if errorlevel 1 exit 1
check:
if: always()
name: check-windows-conda-clang

needs:
- build

runs-on: Ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
15 changes: 15 additions & 0 deletions .github/workflows/windows-conda-v142.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,18 @@ jobs:
cd ..
python -c "import hppfcl"
if errorlevel 1 exit 1
check:
if: always()
name: check-windows-conda-v142

needs:
- build

runs-on: Ubuntu-latest

steps:
- name: Decide whether the needed jobs succeeded or failed
uses: re-actors/alls-green@release/v1
with:
jobs: ${{ toJSON(needs) }}
2 changes: 1 addition & 1 deletion cmake

0 comments on commit eca7284

Please sign in to comment.