-
Notifications
You must be signed in to change notification settings - Fork 276
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'gazebosim:gz-sim9' into jointforces
- Loading branch information
Showing
287 changed files
with
8,324 additions
and
1,810 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
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,9 @@ | ||
#!/bin/sh -l | ||
|
||
set -x | ||
|
||
# For rendering / window tests | ||
Xvfb :1 -screen 0 1280x1024x24 & | ||
export DISPLAY=:1.0 | ||
export RENDER_ENGINE_VALUES=ogre2 | ||
export MESA_GL_VERSION_OVERRIDE=3.3 |
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 |
---|---|---|
|
@@ -7,6 +7,8 @@ on: | |
- 'ign-gazebo[0-9]' | ||
- 'gz-sim[0-9]?' | ||
- 'main' | ||
|
||
# Every time you make a push to your PR, it cancel immediately the previous checks, | ||
# and start a new one. The other runner will be available more quickly to your PR. | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }} | ||
|
@@ -28,7 +30,23 @@ jobs: | |
uses: gazebo-tooling/action-gz-ci@jammy | ||
with: | ||
# per bug https://github.com/gazebosim/gz-sim/issues/1409 | ||
cmake-args: '-DBUILD_DOCS=OFF' | ||
cmake-args: '-DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOCS=OFF' | ||
codecov-enabled: true | ||
cppcheck-enabled: true | ||
cpplint-enabled: true | ||
noble-ci: | ||
runs-on: ubuntu-latest | ||
name: Ubuntu Noble CI | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- uses: actions/setup-python@v3 | ||
- uses: pre-commit/[email protected] | ||
with: | ||
extra_args: --all-files | ||
- name: Compile and test | ||
id: ci | ||
uses: gazebo-tooling/action-gz-ci@noble | ||
with: | ||
# per bug https://github.com/gazebosim/gz-sim/issues/1409 | ||
cmake-args: '-DCMAKE_INSTALL_PREFIX=/usr -DBUILD_DOCS=OFF' |
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,11 @@ | ||
name: Validate package.xml | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
package-xml: | ||
runs-on: ubuntu-latest | ||
name: Validate package.xml | ||
steps: | ||
- uses: gazebo-tooling/action-gz-ci/validate_package_xml@jammy |
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
Oops, something went wrong.