Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
OpenMesh
OpenMesh
Commits
d119277f
Commit
d119277f
authored
Dec 03, 2015
by
Jan Möbius
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Missing escape flag for echo
parent
51a8b070
Pipeline
#236
failed with stage
Changes
2
Pipelines
1
Show 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 @
d119277f
...
...
@@ -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 @
d119277f
...
...
@@ -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
...
...
Jan Möbius
@moebius
mentioned in commit
df02e7b9
·
Dec 03, 2015
mentioned in commit
df02e7b9
mentioned in commit df02e7b968b802b84b7d4d46e34823923fc4646d
Toggle commit list
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