File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -40,9 +40,9 @@ before_install:
40
40
docker pull $DOCKER
41
41
CONTAINER_ID=$(docker run --detach --tty --volume="$PWD":/ariadne --workdir=/ariadne $DOCKER)
42
42
DOCKER_RUN="docker exec --tty $CONTAINER_ID"
43
- $DOCKER_RUN sh -c ' apt update'
44
- $DOCKER_RUN sh -c ' apt install -y curl cmake'
45
- $DOCKER_RUN sh -c ' apt install -y clang++-5.0 libboost-system-dev libboost-serialization-dev libboost-thread-dev libgtk2.0-dev libcairo2-dev libbdd-dev'
43
+ $DOCKER_RUN sh -c " apt update"
44
+ $DOCKER_RUN sh -c " apt install -y curl cmake"
45
+ $DOCKER_RUN sh -c " apt install -y clang++-5.0 libboost-system-dev libboost-serialization-dev libboost-thread-dev libgtk2.0-dev libcairo2-dev libbdd-dev"
46
46
else
47
47
sudo apt-get install -y libboost-system-dev libboost-serialization-dev libboost-thread-dev libgtk2.0-dev libcairo2-dev libbdd-dev
48
48
fi
@@ -51,12 +51,12 @@ before_install:
51
51
script :
52
52
- CMAKE_ARGS="-DCMAKE_CXX_COMPILER=$COMPILER"
53
53
- if [[ -n "$COVERAGE" ]]; then CMAKE_ARGS="$CMAKE_ARGS -DCMAKE_BUILD_TYPE=Debug"; fi
54
- - if [[ -n "$DOCKER" ]]; then $DOCKER_RUN sh -c ' cmake . $CMAKE_ARGS' ; fi
54
+ - if [[ -n "$DOCKER" ]]; then $DOCKER_RUN sh -c " cmake . $CMAKE_ARGS" ; fi
55
55
- if [[ -z "$DOCKER" ]]; then cmake . $CMAKE_ARGS; fi
56
56
- |
57
57
if [[ -n "$DOCKER" ]]; then
58
- $DOCKER_RUN sh -c ' make tests'
59
- $DOCKER_RUN sh -c ' make test'
58
+ $DOCKER_RUN sh -c " make tests"
59
+ $DOCKER_RUN sh -c " make test"
60
60
else
61
61
make tests
62
62
make test
You can’t perform that action at this time.
0 commit comments