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
bd4b1e6f
Commit
bd4b1e6f
authored
Feb 02, 2017
by
Jan Möbius
Browse files
Remove c++98 autobuilds and enable c++14
parent
57bc372a
Pipeline
#4218
failed with stage
in 70 minutes and 37 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
bd4b1e6f
...
...
@@ -8,13 +8,13 @@ clang-c++11:
tags
:
-
Linux
gcc-c++
98
:
script
:
"
CI/ci-linux.sh
gcc
C++
98
"
gcc-c++
14
:
script
:
"
CI/ci-linux.sh
gcc
C++
14
"
tags
:
-
Linux
clang-c++
98
:
script
:
"
CI/ci-linux.sh
clang
C++
98
"
clang-c++
14
:
script
:
"
CI/ci-linux.sh
clang
C++
14
"
tags
:
-
Linux
...
...
@@ -28,13 +28,13 @@ macos-c++11:
-
build-release-cpp11/*.tar.gz
macos-c++98
:
script
:
"
CI/ci-mac.sh
C++
98
"
script
:
"
CI/ci-mac.sh
C++
14
"
tags
:
-
Apple
artifacts
:
paths
:
-
build-release-cpp
98
/*.dmg
-
build-release-cpp
98
/*.tar.gz
-
build-release-cpp
14
/*.dmg
-
build-release-cpp
14
/*.tar.gz
cppcheck
:
script
:
"
CI/ci-cppcheck.sh"
...
...
CI/ci-linux.sh
View file @
bd4b1e6f
...
...
@@ -33,6 +33,10 @@ elif [ "$LANGUAGE" == "C++11" ]; then
echo
"Building with C++11"
;
OPTIONS
=
"
$OPTIONS
-DCMAKE_CXX_FLAGS='-std=c++11' "
BUILDPATH
=
"
$BUILDPATH
-cpp11"
elif
[
"
$LANGUAGE
"
==
"C++14"
]
;
then
echo
"Building with C++14"
;
OPTIONS
=
"
$OPTIONS
-DCMAKE_CXX_FLAGS='-std=c++14' "
BUILDPATH
=
"
$BUILDPATH
-cpp14"
fi
#=====================================
...
...
CI/ci-mac.sh
View file @
bd4b1e6f
...
...
@@ -18,6 +18,10 @@ elif [ "$LANGUAGE" == "C++11" ]; then
echo
"Building with C++11"
;
OPTIONS
=
"
$OPTIONS
-DCMAKE_CXX_FLAGS='-std=c++11' "
BUILDPATH
=
"cpp11"
elif
[
"
$LANGUAGE
"
==
"C++14"
]
;
then
echo
"Building with C++14"
;
OPTIONS
=
"
$OPTIONS
-DCMAKE_CXX_FLAGS='-std=c++14' "
BUILDPATH
=
"cpp14"
fi
#=====================================
...
...
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