Skip to content

Commit

Permalink
Remove CI tests on Artful (#1059)
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 authored Apr 29, 2018
1 parent efeaf98 commit 373434a
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 34 deletions.
29 changes: 0 additions & 29 deletions .ci/docker/ubuntu-artful

This file was deleted.

2 changes: 1 addition & 1 deletion .ci/docker/ubuntu-bionic
Original file line number Diff line number Diff line change
Expand Up @@ -25,5 +25,5 @@ RUN apt-get install -y \
liburdfdom-dev \
liburdfdom-headers-dev \
libopenscenegraph-dev \
clang-format-3.8 \
# clang-format-3.8 \ # Disable until higher version is supported
lcov
2 changes: 1 addition & 1 deletion .ci/script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ if [ "$TRAVIS_PULL_REQUEST" = "false" ] && [ "$TRAVIS_OS_NAME" = "linux" ] && [
mkdir build && cd build
cmake -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DDART_VERBOSE=ON -DDART_TREAT_WARNINGS_AS_ERRORS=ON -DDART_CODECOV=$CODECOV ..
if [ "$TRAVIS_OS_NAME" = "linux" ]; then make -j4 tutorials examples tests; else make -j4 tests; fi
if [ "$TRAVIS_OS_NAME" = "linux" ]; then make check-format; fi
if [ "$TRAVIS_OS_NAME" = "linux" ] && [ $(lsb_release -sc) = "trusty" ]; then make check-format; fi
if [ $CODECOV = ON ]; then make -j4 codecov; else ctest --output-on-failure -j4; fi

# Make sure we can install with no issues
Expand Down
3 changes: 0 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,6 @@ matrix:
- os: linux
env: DOCKER_FILE="ubuntu-xenial" BUILD_TYPE=Release CODECOV=OFF COMPILER=GCC
services: docker
- os: linux
env: DOCKER_FILE="ubuntu-artful" BUILD_TYPE=Release CODECOV=OFF COMPILER=GCC
services: docker
- os: linux
env: DOCKER_FILE="ubuntu-bionic" BUILD_TYPE=Release CODECOV=OFF COMPILER=GCC
services: docker
Expand Down

0 comments on commit 373434a

Please sign in to comment.