Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
OpenMesh
OpenMesh
Commits
df02e7b9
Commit
df02e7b9
authored
Dec 03, 2015
by
Jan Möbius
Browse files
Missing escape flag for echo
(cherry picked from commit
d119277f
)
parent
bb6642a8
Pipeline
#237
failed with stage
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
CI/ci-linux.sh
View file @
df02e7b9
...
...
@@ -35,12 +35,12 @@ NC='\033[0m'
OUTPUT
=
'\033[0;32m'
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
...
...
@@ -57,12 +57,12 @@ make
#build the unit tests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
...
...
@@ -72,12 +72,12 @@ cd Unittests
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
mkdir
build-release-
$BUILDPATH
...
...
@@ -90,12 +90,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
#build it
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running Python unittests Release version "
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
...
...
@@ -108,12 +108,12 @@ cd ..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
...
...
@@ -130,12 +130,12 @@ make
#build the unit tests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
...
...
@@ -146,12 +146,12 @@ cd Unittests
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
mkdir
build-debug-
$BUILDPATH
...
...
@@ -164,12 +164,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
#build it
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running Python unittests Debug version "
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
...
...
CI/ci-mac.sh
View file @
df02e7b9
...
...
@@ -27,12 +27,12 @@ NC='\033[0m'
OUTPUT
=
'\033[0;32m'
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
...
...
@@ -49,12 +49,12 @@ make
#build the unit tests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
...
...
@@ -64,12 +64,12 @@ cd Unittests
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
mkdir
build-release-
$BUILDPATH
...
...
@@ -82,12 +82,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
#build it
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running Python unittests Release version "
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
...
...
@@ -102,12 +102,12 @@ cd ..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
...
...
@@ -124,12 +124,12 @@ make
#build the unit tests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
...
...
@@ -140,12 +140,12 @@ cd Unittests
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
mkdir
build-debug-
$BUILDPATH
...
...
@@ -158,12 +158,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
#build it
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
"======================================================================"
echo
"Running Python unittests Debug version "
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment