Skip to content

Commit 386c0ad

Browse files
committed
Fixed evaluation of variables
1 parent 373e9c3 commit 386c0ad

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.travis.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ before_install:
4040
docker pull $DOCKER
4141
CONTAINER_ID=$(docker run --detach --tty --volume="$PWD":/ariadne --workdir=/ariadne $DOCKER)
4242
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"
4646
else
4747
sudo apt-get install -y libboost-system-dev libboost-serialization-dev libboost-thread-dev libgtk2.0-dev libcairo2-dev libbdd-dev
4848
fi
@@ -51,12 +51,12 @@ before_install:
5151
script:
5252
- CMAKE_ARGS="-DCMAKE_CXX_COMPILER=$COMPILER"
5353
- 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
5555
- if [[ -z "$DOCKER" ]]; then cmake . $CMAKE_ARGS; fi
5656
- |
5757
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"
6060
else
6161
make tests
6262
make test

0 commit comments

Comments
 (0)