-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Imported upstream version '2.4.0' of 'upstream'
- Loading branch information
Showing
92 changed files
with
2,831 additions
and
1,298 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
0067c8aa66aac548601e2a3fd029aa264cc59f2a | ||
76b68f785df31b00e153290b45ec290a9c5f7963 | ||
# ruff --fix . (Guilhem Saurel, 2023-10-24) | ||
58dee5ae90eded5125825a2da0fe76a5031f3334 | ||
# black . (Guilhem Saurel, 2023-10-24) | ||
889ff8d1ca00b9e317e1da4136e233bb49a049df |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
name: Check-changelog | ||
on: | ||
pull_request: | ||
types: [assigned, opened, synchronize, reopened, labeled, unlabeled] | ||
branches: | ||
- devel | ||
jobs: | ||
check-changelog: | ||
name: Check changelog action | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: tarides/changelog-check-action@v2 | ||
with: | ||
changelog: CHANGELOG.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Build hpp-fcl for Mac OS X/Linux via pip | ||
|
||
on: [push, pull_request] | ||
|
||
env: | ||
CTEST_OUTPUT_ON_FAILURE: 1 | ||
CTEST_PARALLEL_LEVEL: 4 | ||
|
||
jobs: | ||
hpp-fcl-pip: | ||
name: "CI on ${{ matrix.os }} / py ${{ matrix.python-version }} with pip" | ||
runs-on: "${{ matrix.os }}-latest" | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
os: ["ubuntu", "macos"] | ||
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
submodules: 'true' | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- run: python -m pip install -U pip | ||
- run: python -m pip install cmeel-assimp cmeel-octomap cmeel-qhull eigenpy[build] | ||
- run: echo "CMAKE_PREFIX_PATH=$(cmeel cmake)" >> $GITHUB_ENV | ||
- run: cmake -B build -S . -DHPP_FCL_HAS_QHULL=ON | ||
- run: cmake --build build -j 4 | ||
- run: cmake --build build -t test |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
include: http://rainboard.laas.fr/project/hpp-fcl/.gitlab-ci.yml | ||
include: https://rainboard.laas.fr/project/hpp-fcl/.gitlab-ci.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,24 @@ | ||
ci: | ||
autoupdate_branch: 'devel' | ||
autoupdate_branch: devel | ||
repos: | ||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v15.0.7 | ||
hooks: | ||
- id: clang-format | ||
args: ['--style={BasedOnStyle: Google, SortIncludes: false}'] | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.4.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
rev: 23.1.0 | ||
hooks: | ||
- id: black | ||
- repo: https://github.com/astral-sh/ruff-pre-commit | ||
rev: v0.1.6 | ||
hooks: | ||
- id: ruff | ||
args: | ||
- --fix | ||
- --exit-non-zero-on-fix | ||
- repo: https://github.com/pre-commit/mirrors-clang-format | ||
rev: v17.0.5 | ||
hooks: | ||
- id: clang-format | ||
args: | ||
- '--style={BasedOnStyle: Google, SortIncludes: false}' | ||
- repo: https://github.com/pre-commit/pre-commit-hooks | ||
rev: v4.5.0 | ||
hooks: | ||
- id: trailing-whitespace | ||
- repo: https://github.com/psf/black | ||
rev: 23.11.0 | ||
hooks: | ||
- id: black |
Oops, something went wrong.