This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "".
The branch, master has been updated via a0dbb9e7203842587c19181ddb59f91ec718c0ee (commit) via e7be5e889557dac322d5c0628eca54e169eb3bf6 (commit) via 49cd419fee75f61451fabd67b0c0031d03f5708e (commit) from d9fb340f78366750b7b519a1e838f73672428870 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit a0dbb9e7203842587c19181ddb59f91ec718c0ee Author: Matias Elo matias.elo@nokia.com Date: Wed Feb 27 15:21:08 2019 +0200
shippable: don't run tests on gh-pages branch
Signed-off-by: Matias Elo matias.elo@nokia.com Reviewed-by: Petri Savolainen petri.savolainen@nokia.com
diff --git a/.travis.yml b/.travis.yml index f72b28b44..e223c756b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -244,6 +244,8 @@ jobs: before_deploy: - pushd doc - mkdir gh-pages + # Prevent Shippable run on gh-pages branch + - printf "branches:\n except:\n - gh-pages\n" >> gh-pages/.shippable.yml - cp -r application-api-guide/output/html/* gh-pages/ - cp -r platform-api-guide/output/html/ gh-pages/platform-api-guide - cp -r helper-guide/output/html/ gh-pages/helper-guide
commit e7be5e889557dac322d5c0628eca54e169eb3bf6 Author: Matias Elo matias.elo@nokia.com Date: Wed Feb 27 09:42:42 2019 +0200
travis: build and deploy all guides to GitHub Pages
Signed-off-by: Matias Elo matias.elo@nokia.com Reviewed-by: Petri Savolainen petri.savolainen@nokia.com
diff --git a/.travis.yml b/.travis.yml index c6c100d13..f72b28b44 100644 --- a/.travis.yml +++ b/.travis.yml @@ -201,13 +201,15 @@ jobs: -e CONF="--enable-user-guides --disable-abi-compat" ${DOCKER_NAMESPACE}/travis-odp-lng-ubuntu_16.04 /odp/scripts/ci/distcheck.sh - stage: "build only" - env: TEST=doxygen + env: TEST=documentation compiler: gcc addons: apt: packages: + - asciidoctor - libconfig-dev - libssl-dev + - mscgen - cmake - graphviz install: @@ -223,9 +225,13 @@ jobs: popd fi - export PATH=$HOME/doxygen-install/bin:$PATH + - gem install asciidoctor script: - ./bootstrap - - ./configure + - ./configure --enable-user-guides + - pushd doc + - make + - popd # doxygen does not trap on warnings, check for them here. - make doxygen-doc 2>&1 |tee doxygen.log - | @@ -235,10 +241,23 @@ jobs: else true fi + before_deploy: + - pushd doc + - mkdir gh-pages + - cp -r application-api-guide/output/html/* gh-pages/ + - cp -r platform-api-guide/output/html/ gh-pages/platform-api-guide + - cp -r helper-guide/output/html/ gh-pages/helper-guide + - mkdir gh-pages/implementers-guide + - cp implementers-guide/implementers-guide.html gh-pages/implementers-guide/index.html + - mkdir gh-pages/users-guide + - cp users-guide/users-guide.html gh-pages/users-guide/index.html + - mkdir gh-pages/process-guide + - cp process-guide/*.html gh-pages/process-guide/ + - popd deploy: provider: pages skip_cleanup: true - local_dir: doc/application-api-guide/output/html + local_dir: doc/gh-pages github_token: $GH_REPO_TOKEN on: branch: master
commit 49cd419fee75f61451fabd67b0c0031d03f5708e Author: Matias Elo matias.elo@nokia.com Date: Tue Feb 26 13:37:14 2019 +0200
doc: fix issue tracking site url
Signed-off-by: Matias Elo matias.elo@nokia.com Reviewed-by: Petri Savolainen petri.savolainen@nokia.com
diff --git a/doc/application-api-guide/odp.dox b/doc/application-api-guide/odp.dox index 33357bc9b..08b95de2b 100644 --- a/doc/application-api-guide/odp.dox +++ b/doc/application-api-guide/odp.dox @@ -38,7 +38,7 @@ * @section contact Contact Details * - The main web site is http://www.opendataplane.org/ * - The git repo is https://github.com/OpenDataPlane/odp.git - * - Bug tracking is https://bugs.linaro.org/describecomponents.cgi?product=OpenDataPlane%20-%20l... + * - Bug tracking is https://github.com/OpenDataPlane/odp/issues * */
diff --git a/doc/helper-guide/odp.dox b/doc/helper-guide/odp.dox index 0a0f93754..11333e910 100644 --- a/doc/helper-guide/odp.dox +++ b/doc/helper-guide/odp.dox @@ -21,6 +21,6 @@ * @section contact Contact Details * - The main web site is http://www.opendataplane.org/ * - The git repo is https://github.com/OpenDataPlane/odp.git - * - Bug tracking is https://bugs.linaro.org/describecomponents.cgi?product=OpenDataPlane%20-%20l... + * - Bug tracking is https://github.com/OpenDataPlane/odp/issues * */
-----------------------------------------------------------------------
Summary of changes: .travis.yml | 27 ++++++++++++++++++++++++--- doc/application-api-guide/odp.dox | 2 +- doc/helper-guide/odp.dox | 2 +- 3 files changed, 26 insertions(+), 5 deletions(-)
hooks/post-receive