Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
O
ogs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Dmitri Naumov
ogs
Commits
ce8f1312
Commit
ce8f1312
authored
7 years ago
by
Tom Fischer
Committed by
GitHub
7 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #1795 from bilke/log-parser-ignore
[Jenkins] Ignore and disable warnings
parents
0f3a3c56
19c7fdd9
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
ThirdParty/CMakeLists.txt
+4
-0
4 additions, 0 deletions
ThirdParty/CMakeLists.txt
scripts/cmake/MetisSetup.cmake
+7
-5
7 additions, 5 deletions
scripts/cmake/MetisSetup.cmake
scripts/jenkins/all-log-parser.rules
+6
-2
6 additions, 2 deletions
scripts/jenkins/all-log-parser.rules
with
17 additions
and
7 deletions
ThirdParty/CMakeLists.txt
+
4
−
0
View file @
ce8f1312
...
@@ -44,10 +44,14 @@ if(NOT TARGET vtkGUISupportQt AND OGS_BUILD_GUI)
...
@@ -44,10 +44,14 @@ if(NOT TARGET vtkGUISupportQt AND OGS_BUILD_GUI)
set
(
VTK_QT_VERSION 5 CACHE INTERNAL
""
)
set
(
VTK_QT_VERSION 5 CACHE INTERNAL
""
)
include_directories
(
SYSTEM
${
VTK_INCLUDE_DIRS
}
)
include_directories
(
SYSTEM
${
VTK_INCLUDE_DIRS
}
)
add_subdirectory
(
vtkGUISupportQt
)
add_subdirectory
(
vtkGUISupportQt
)
if
(
MSVC
)
set_target_properties
(
vtkGUISupportQt PROPERTIES COMPILE_FLAGS /W0
)
endif
()
endif
()
endif
()
if
(
OGS_BUILD_SWMM
)
if
(
OGS_BUILD_SWMM
)
add_subdirectory
(
SWMMInterface
)
add_subdirectory
(
SWMMInterface
)
set_target_properties
(
SWMM SwmmInterface PROPERTIES COMPILE_FLAGS /W0
)
endif
()
endif
()
if
(
OGS_BUILD_METIS
)
if
(
OGS_BUILD_METIS
)
...
...
This diff is collapsed.
Click to expand it.
scripts/cmake/MetisSetup.cmake
+
7
−
5
View file @
ce8f1312
...
@@ -23,11 +23,6 @@ include_directories(BEFORE ${METIS_PATH}/libmetis)
...
@@ -23,11 +23,6 @@ include_directories(BEFORE ${METIS_PATH}/libmetis)
file
(
GLOB metis_sources
${
METIS_PATH
}
/libmetis/*.c
)
file
(
GLOB metis_sources
${
METIS_PATH
}
/libmetis/*.c
)
# Build libmetis.
# Build libmetis.
add_library
(
metis
${
GKlib_sources
}
${
metis_sources
}
)
add_library
(
metis
${
GKlib_sources
}
${
metis_sources
}
)
if
(
MSVC
)
set_target_properties
(
metis PROPERTIES COMPILE_FLAGS /W0
)
else
()
set_target_properties
(
metis PROPERTIES COMPILE_FLAGS -w
)
endif
()
if
(
UNIX
)
if
(
UNIX
)
target_link_libraries
(
metis m
)
target_link_libraries
(
metis m
)
...
@@ -58,3 +53,10 @@ set(METIS_SOURCES
...
@@ -58,3 +53,10 @@ set(METIS_SOURCES
add_executable
(
mpmetis
${
METIS_SOURCES
}
)
add_executable
(
mpmetis
${
METIS_SOURCES
}
)
target_link_libraries
(
mpmetis metis
)
target_link_libraries
(
mpmetis metis
)
install
(
TARGETS mpmetis RUNTIME DESTINATION bin COMPONENT ogs_partmesh
)
install
(
TARGETS mpmetis RUNTIME DESTINATION bin COMPONENT ogs_partmesh
)
# Disable warnings
if
(
MSVC
)
set_target_properties
(
metis mpmetis PROPERTIES COMPILE_FLAGS /W0
)
else
()
set_target_properties
(
metis mpmetis PROPERTIES COMPILE_FLAGS -w
)
endif
()
This diff is collapsed.
Click to expand it.
scripts/jenkins/all-log-parser.rules
+
6
−
2
View file @
ce8f1312
# Workflow stages used for grouping
# Ignore warnings in Conan packages on Windows
start /stage:/
ok /\\\.conan\\/
# Ignore linker warnings on envinf1 with petsc
ok /.*/usr/bin/ld: warning: libssl.*may conflict with libssl.*/
ok /.*/usr/bin/ld: warning: libcrypto.*may conflict with libcrypto.*/
# CMake
# CMake
warning /CMake Warning/
warning /CMake Warning/
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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!
Save comment
Cancel
Please
register
or
sign in
to comment