-
Notifications
You must be signed in to change notification settings - Fork 277
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Louise Poubel <[email protected]>
- Loading branch information
Showing
22 changed files
with
830 additions
and
42 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
#!/bin/sh -l | ||
|
||
set -x | ||
|
||
# Needed on Focal to get dart6-data for tests | ||
apt -y install software-properties-common | ||
apt-add-repository ppa:dartsim/ppa | ||
apt -y install dart6-data |
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,15 @@ | ||
#!/bin/sh -l | ||
|
||
set -x | ||
|
||
# Install (needed for some tests) | ||
make install | ||
|
||
# For ign-tools | ||
export IGN_CONFIG_PATH=/usr/local/share/ignition | ||
|
||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dart6-data | ||
libdart6-collision-ode-dev | ||
libdart6-dev | ||
libdart6-utils-urdf-dev |
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,5 @@ | ||
libdart-collision-ode-dev | ||
libdart-dev | ||
libdart-external-ikfast-dev | ||
libdart-external-odelcpsolver-dev | ||
libdart-utils-urdf-dev |
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,15 @@ | ||
libignition-cmake2-dev | ||
libignition-common3-dev | ||
libignition-fuel-tools4-dev | ||
libignition-gui3-dev | ||
libignition-math6-eigen3-dev | ||
libignition-msgs5-dev | ||
libignition-physics2-dev | ||
libignition-plugin-dev | ||
libignition-rendering3-dev | ||
libignition-sensors3-dev | ||
libignition-tools-dev | ||
libignition-transport8-dev | ||
libsdformat9-dev | ||
qml-module-qtqml-models2 | ||
xvfb |
This file was deleted.
Oops, something went wrong.
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,26 @@ | ||
name: Ubuntu CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
bionic-ci: | ||
runs-on: ubuntu-latest | ||
name: Ubuntu Bionic CI | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Compile and test | ||
id: ci | ||
uses: ignition-tooling/action-ignition-ci@master | ||
with: | ||
codecov-token: ${{ secrets.CODECOV_TOKEN }} | ||
# TODO(anyone) Enable Focal CI and fix failing tests | ||
# focal-ci: | ||
# runs-on: ubuntu-latest | ||
# name: Ubuntu Focal CI | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v2 | ||
# - name: Compile and test | ||
# id: ci | ||
# uses: ignition-tooling/action-ignition-ci@focal |
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 |
---|---|---|
@@ -0,0 +1,4 @@ | ||
gz_add_gui_plugin(ResourceSpawner | ||
SOURCES ResourceSpawner.cc | ||
QT_HEADERS ResourceSpawner.hh | ||
) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.