-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #82 from nim65s/devel
using graphics::dynamic_pointer_cast instead of boost::
- Loading branch information
Showing
3 changed files
with
63 additions
and
6 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 |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# Please don't edit this file, and use the version generated at | ||
# http://rainboard.laas.fr/project/gepetto-viewer-corba/.gitlab-ci.yml | ||
|
||
variables: | ||
GIT_SUBMODULE_STRATEGY: "recursive" | ||
CCACHE_BASEDIR: "${CI_PROJECT_DIR}" | ||
CCACHE_DIR: "${CI_PROJECT_DIR}/ccache" | ||
|
||
cache: | ||
paths: | ||
- ccache | ||
|
||
.robotpkg-gepetto-viewer-corba: &robotpkg-gepetto-viewer-corba | ||
except: | ||
- gh-pages | ||
script: | ||
- mkdir -p ccache | ||
- cd /root/robotpkg/graphics | ||
- git pull | ||
- cd gepetto-viewer-corba | ||
- make checkout MASTER_REPOSITORY="dir ${CI_PROJECT_DIR}" | ||
- make install | ||
- cd work.$(hostname)/$(make show-var VARNAME=DISTNAME)/build | ||
- make test | ||
|
||
robotpkg-gepetto-viewer-corba-14.04-release: | ||
<<: *robotpkg-gepetto-viewer-corba | ||
image: eur0c.laas.fr:5000/humanoid-path-planner/gepetto-viewer-corba/gepetto-viewer-corba:14.04 | ||
|
||
robotpkg-gepetto-viewer-corba-16.04-release: | ||
<<: *robotpkg-gepetto-viewer-corba | ||
image: eur0c.laas.fr:5000/humanoid-path-planner/gepetto-viewer-corba/gepetto-viewer-corba:16.04 | ||
|
||
robotpkg-gepetto-viewer-corba-18.04-release: | ||
<<: *robotpkg-gepetto-viewer-corba | ||
image: eur0c.laas.fr:5000/humanoid-path-planner/gepetto-viewer-corba/gepetto-viewer-corba:18.04 | ||
|
||
doc-coverage: | ||
<<: *robotpkg-gepetto-viewer-corba | ||
image: eur0c.laas.fr:5000/humanoid-path-planner/gepetto-viewer-corba/gepetto-viewer-corba:16.04 | ||
before_script: | ||
- echo -e 'CXXFLAGS+= --coverage\nLDFLAGS+= --coverage\nPKG_DEFAULT_OPTIONS= debug' >> /opt/openrobots/etc/robotpkg.conf | ||
after_script: | ||
- cd /root/robotpkg/graphics/gepetto-viewer-corba | ||
- cd work.$(hostname)/$(make show-var VARNAME=DISTNAME)/build | ||
- make doc | ||
- mv doc/doxygen-html ${CI_PROJECT_DIR} | ||
- mkdir -p ${CI_PROJECT_DIR}/coverage/ | ||
- gcovr -r . | ||
- gcovr -r . --html --html-details -o ${CI_PROJECT_DIR}/coverage/index.html | ||
artifacts: | ||
expire_in: 1 day | ||
paths: | ||
- doxygen-html/ | ||
- coverage/ |
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