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 / Register
Toggle navigation
Open sidebar
dorie
dorie
Commits
e69ee08e
Commit
e69ee08e
authored
Dec 15, 2016
by
Dion Haefner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
warnings treated as errors; added debug CI build
parent
a81a9ba8
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
1 deletion
+5
-1
.gitlab-ci.yml
.gitlab-ci.yml
+4
-0
CMakeLists.txt
CMakeLists.txt
+1
-1
No files found.
.gitlab-ci.yml
View file @
e69ee08e
...
...
@@ -32,6 +32,10 @@ build:update_dune:
-
ARGS="--output-on-failure -j 2" ./dune-common/bin/dunecontrol --only=dorie make test
stage
:
build
build:debug:
script
:
-
CMAKE_FLAGS="-DCMAKE_BUILD_TYPE=Debug" ./dune-common/bin/dunecontrol --only=dorie all
deploy:docs:
script
:
-
cd $CI_PROJECT_DIR && bash .deploy_docs
...
...
CMakeLists.txt
View file @
e69ee08e
...
...
@@ -10,7 +10,7 @@ string(TOUPPER ${CMAKE_BUILD_TYPE} CMAKE_BUILD_TYPE_UPPER)
if
(
CMAKE_BUILD_TYPE_UPPER MATCHES DEBUG
)
set
(
CMAKE_VERBOSE_MAKEFILE ON
)
endif
()
set
(
CMAKE_CXX_FLAGS_DEBUG
"
${
CMAKE_CXX_FLAGS_DEBUG
}
-Wall"
)
set
(
CMAKE_CXX_FLAGS_DEBUG
"
${
CMAKE_CXX_FLAGS_DEBUG
}
-Wall
-Werror
"
)
#
if
(
NOT
(
dune-common_DIR OR dune-common_ROOT OR
...
...
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