-
Notifications
You must be signed in to change notification settings - Fork 127
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
15d25a4
commit 0721415
Showing
4 changed files
with
69 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# Client maintainer: [email protected] | ||
|
||
set(ENV{CC} clang) | ||
set(ENV{CXX} clang++) | ||
|
||
set(dashboard_cache " | ||
CMAKE_CXX_FLAGS=-fsanitize-memory-track-origins | ||
CMAKE_LINKER_FLAGS=-fsanitize-memory-track-origins | ||
BUILD_TESTING:BOOL=ON | ||
ADIOS2_BUILD_EXAMPLES:BOOL=ON | ||
ADIOS2_USE_Fortran:STRING=OFF | ||
ADIOS2_USE_HDF5:STRING=ON | ||
ADIOS2_USE_MPI:STRING=OFF | ||
ADIOS2_USE_Python:STRING=OFF | ||
") | ||
|
||
set(dashboard_track "Analysis") | ||
set(CTEST_CMAKE_GENERATOR "Ninja") | ||
set(CTEST_BUILD_FLAGS "-k0 -j8") | ||
set(CTEST_MEMORYCHECK_TYPE "MemorySanitizer") | ||
|
||
set(ADIOS_TEST_REPEAT 0) | ||
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}") | ||
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake) |
39 changes: 39 additions & 0 deletions
39
scripts/ci/images/opensuse/Dockerfile.ci-circle-opensuse-tw
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
##============================================================================= | ||
## | ||
## Copyright (c) Kitware, Inc. | ||
## All rights reserved. | ||
## See LICENSE.txt for details. | ||
## | ||
## This software is distributed WITHOUT ANY WARRANTY; without even | ||
## the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR | ||
## PURPOSE. See the above copyright notice for more information. | ||
## | ||
##============================================================================= | ||
|
||
FROM opensuse/tumbleweed | ||
LABEL maintainer "Vicente Adolfo Bolea Sanchez<[email protected]>" | ||
|
||
# Base dependencies for building ADIOS2 projects | ||
RUN zypper refresh && \ | ||
zypper update -y && \ | ||
zypper install -y --no-recommends \ | ||
gcc \ | ||
gcc-c++ \ | ||
blosc-devel \ | ||
bzip3-devel \ | ||
clang18 \ | ||
cmake \ | ||
curl \ | ||
file \ | ||
git \ | ||
git-lfs \ | ||
hdf5-devel \ | ||
libfabric-devel \ | ||
libffi-devel \ | ||
libpng16-devel \ | ||
ninja \ | ||
patch \ | ||
zeromq-devel \ | ||
zlib-devel \ | ||
&& \ | ||
zypper clean --all |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters