File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ before_install:
2424script :
2525 - chmod u+x $TRAVIS_BUILD_DIR/tests/travis/script.sh
2626 - docker run -e TRAVIS_BRANCH -e BUILD_TYPE -e DISTRO -v $TRAVIS_BUILD_DIR:/pdalc -t simverge/pdalc-build-deps:$DISTRO /pdalc/tests/travis/script.sh
27- - if ["$DISTRO" = "ubuntu"]; then sonar-scanner; fi
27+ - if [ "$DISTRO" = "ubuntu" ]; then sonar-scanner; fi
Original file line number Diff line number Diff line change 33gcc --version
44g++ --version
55
6- if [" $DISTRO " = " ubuntu" ]; then
6+ if [ " $DISTRO " = " ubuntu" ]; then
77 # Download and unzip the sonarcloud build wrapper
88 curl -LsS https://sonarcloud.io/static/cpp/build-wrapper-linux-x86.zip > build-wrapper-linux-x86.zip
99 unzip build-wrapper-linux-x86.zip
@@ -19,7 +19,7 @@ mkdir -p "$CI_PROJECT_DIR/build/$TARGET_PLATFORM"
1919cd " $CI_PROJECT_DIR /build/$TARGET_PLATFORM "
2020cmake -G " Unix Makefiles" -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPDALC_GCC_PARAM_GGC_MIN_HEAPSIZE=8192 " $CI_PROJECT_DIR "
2121
22- if [" $DISTRO " = " ubuntu" ]; then
22+ if [ " $DISTRO " = " ubuntu" ]; then
2323 $SONARCLOUD_DIR /build-wrapper-linux-x86-64 --out-dir $CI_PROJECT_DIR /bw-output make
2424else
2525 make
You can’t perform that action at this time.
0 commit comments