Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
df02e7b9
Commit
df02e7b9
authored
Dec 03, 2015
by
Jan Möbius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
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
Showing
2 changed files
with
32 additions
and
32 deletions
+32
-32
CI/ci-linux.sh
CI/ci-linux.sh
+16
-16
CI/ci-mac.sh
CI/ci-mac.sh
+16
-16
No files found.
CI/ci-linux.sh
View file @
df02e7b9
...
@@ -35,12 +35,12 @@ NC='\033[0m'
...
@@ -35,12 +35,12 @@ NC='\033[0m'
OUTPUT
=
'\033[0;32m'
OUTPUT
=
'\033[0;32m'
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Release version with vectorchecks enabled"
echo
"Building Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
...
@@ -57,12 +57,12 @@ make
...
@@ -57,12 +57,12 @@ make
#build the unit tests
#build the unit tests
make unittests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
cd
Unittests
...
@@ -72,12 +72,12 @@ cd Unittests
...
@@ -72,12 +72,12 @@ cd Unittests
cd
..
cd
..
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
mkdir
build-release-
$BUILDPATH
mkdir
build-release-
$BUILDPATH
...
@@ -90,12 +90,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
...
@@ -90,12 +90,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
#build it
#build it
make
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running Python unittests Release version "
echo
"Running Python unittests Release version "
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
# Execute Python unittests
...
@@ -108,12 +108,12 @@ cd ..
...
@@ -108,12 +108,12 @@ cd ..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Debug version with vectorchecks enabled"
echo
"Building Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
...
@@ -130,12 +130,12 @@ make
...
@@ -130,12 +130,12 @@ make
#build the unit tests
#build the unit tests
make unittests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
cd
Unittests
...
@@ -146,12 +146,12 @@ cd Unittests
...
@@ -146,12 +146,12 @@ cd Unittests
cd
..
cd
..
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
mkdir
build-debug-
$BUILDPATH
mkdir
build-debug-
$BUILDPATH
...
@@ -164,12 +164,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
...
@@ -164,12 +164,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
#build it
#build it
make
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running Python unittests Debug version "
echo
"Running Python unittests Debug version "
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
# Execute Python unittests
...
...
CI/ci-mac.sh
View file @
df02e7b9
...
@@ -27,12 +27,12 @@ NC='\033[0m'
...
@@ -27,12 +27,12 @@ NC='\033[0m'
OUTPUT
=
'\033[0;32m'
OUTPUT
=
'\033[0;32m'
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Release version with vectorchecks enabled"
echo
"Building Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
if
[
!
-d
build-release-
$BUILDPATH
-Vector-Checks
]
;
then
...
@@ -49,12 +49,12 @@ make
...
@@ -49,12 +49,12 @@ make
#build the unit tests
#build the unit tests
make unittests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"Running unittests Release version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
cd
Unittests
...
@@ -64,12 +64,12 @@ cd Unittests
...
@@ -64,12 +64,12 @@ cd Unittests
cd
..
cd
..
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"Building Release version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
if
[
!
-d
build-release-
$BUILDPATH
]
;
then
mkdir
build-release-
$BUILDPATH
mkdir
build-release-
$BUILDPATH
...
@@ -82,12 +82,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
...
@@ -82,12 +82,12 @@ cmake -DCMAKE_BUILD_TYPE=Release -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_A
#build it
#build it
make
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running Python unittests Release version "
echo
"Running Python unittests Release version "
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
# Execute Python unittests
...
@@ -102,12 +102,12 @@ cd ..
...
@@ -102,12 +102,12 @@ cd ..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Debug version with vectorchecks enabled"
echo
"Building Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
if
[
!
-d
build-debug-
$BUILDPATH
-Vector-Checks
]
;
then
...
@@ -124,12 +124,12 @@ make
...
@@ -124,12 +124,12 @@ make
#build the unit tests
#build the unit tests
make unittests
make unittests
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"Running unittests Debug version with vectorchecks enabled"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
cd
Unittests
cd
Unittests
...
@@ -140,12 +140,12 @@ cd Unittests
...
@@ -140,12 +140,12 @@ cd Unittests
cd
..
cd
..
cd
..
cd
..
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"Building Debug version with vectorchecks disabled for python tests"
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
if
[
!
-d
build-debug-
$BUILDPATH
]
;
then
mkdir
build-debug-
$BUILDPATH
mkdir
build-debug-
$BUILDPATH
...
@@ -158,12 +158,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
...
@@ -158,12 +158,12 @@ cmake -DCMAKE_BUILD_TYPE=DEBUG -DOPENMESH_BUILD_PYTHON_UNIT_TESTS=ON -DBUILD_APP
#build it
#build it
make
make
echo
"
${
OUTPUT
}
"
echo
-e
"
${
OUTPUT
}
"
echo
""
echo
""
echo
"======================================================================"
echo
"======================================================================"
echo
"Running Python unittests Debug version "
echo
"Running Python unittests Debug version "
echo
"======================================================================"
echo
"======================================================================"
echo
"
${
NC
}
"
echo
-e
"
${
NC
}
"
# Execute Python unittests
# Execute Python unittests
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a 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