-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: Run emulated ppc64le images in CI
- Loading branch information
Chuck Atkins
committed
Apr 29, 2020
1 parent
812556c
commit 2f32818
Showing
6 changed files
with
202 additions
and
16 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,36 @@ | ||
# Client maintainer: [email protected] | ||
|
||
set(ENV{CC} pgcc) | ||
set(ENV{CXX} pgc++) | ||
set(ENV{FC} pgfortran) | ||
|
||
find_program(MPICC mpipgicc) | ||
find_program(MPICXX mpipgic++) | ||
find_program(MPIFC mpipgifort) | ||
|
||
set(dashboard_cache " | ||
ADIOS2_USE_BZip2:BOOL=OFF | ||
ADIOS2_USE_Blosc:BOOL=OFF | ||
ADIOS2_USE_DataMan:BOOL=OFF | ||
ADIOS2_USE_Fortran:BOOL=ON | ||
ADIOS2_USE_HDF5:BOOL=ON | ||
ADIOS2_USE_MPI:BOOL=ON | ||
ADIOS2_USE_Python:BOOL=OFF | ||
ADIOS2_USE_SZ:BOOL=ON | ||
ADIOS2_USE_ZeroMQ:STRING=OFF | ||
ADIOS2_USE_ZFP:BOOL=ON | ||
MPI_C_COMPILER:FILEPATH=${MPICC} | ||
MPI_CXX_COMPILER:FILEPATH=${MPICXX} | ||
MPI_Fortran_COMPILER:FILEPATH=${MPIFC} | ||
MPIEXEC_EXTRA_FLAGS:STRING=--allow-run-as-root --oversubscribe -tcp | ||
") | ||
|
||
set(CTEST_TEST_ARGS | ||
PARALLEL_LEVEL 1 | ||
INCLUDE "^(Interface|Install)" | ||
) | ||
set(CTEST_CMAKE_GENERATOR "Unix Makefiles") | ||
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}") | ||
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake) |
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} pgcc) | ||
set(ENV{CXX} pgc++) | ||
set(ENV{FC} pgfortran) | ||
|
||
set(dashboard_cache " | ||
ADIOS2_USE_BZip2:BOOL=OFF | ||
ADIOS2_USE_Blosc:BOOL=OFF | ||
ADIOS2_USE_DataMan:BOOL=OFF | ||
ADIOS2_USE_Fortran:BOOL=ON | ||
ADIOS2_USE_HDF5:BOOL=ON | ||
ADIOS2_USE_MPI:BOOL=OFF | ||
ADIOS2_USE_Python:BOOL=OFF | ||
ADIOS2_USE_SZ:BOOL=ON | ||
ADIOS2_USE_ZeroMQ:STRING=OFF | ||
ADIOS2_USE_ZFP:BOOL=ON | ||
") | ||
|
||
set(CTEST_TEST_ARGS | ||
INCLUDE "^(Interface|Install)" | ||
) | ||
set(CTEST_CMAKE_GENERATOR "Unix Makefiles") | ||
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}") | ||
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake) |
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,35 @@ | ||
# Client maintainer: [email protected] | ||
|
||
set(ENV{CC} xlc) | ||
set(ENV{CXX} xlc++) | ||
set(ENV{FC} xlf) | ||
|
||
find_program(MPICC mpixlc) | ||
find_program(MPICXX mpixlC) | ||
find_program(MPIFC mpixlf) | ||
|
||
set(dashboard_cache " | ||
ADIOS2_USE_BZip2:BOOL=OFF | ||
ADIOS2_USE_Blosc:BOOL=OFF | ||
ADIOS2_USE_DataMan:BOOL=OFF | ||
ADIOS2_USE_Fortran:BOOL=ON | ||
ADIOS2_USE_HDF5:BOOL=ON | ||
ADIOS2_USE_MPI:BOOL=ON | ||
ADIOS2_USE_Python:BOOL=OFF | ||
ADIOS2_USE_SZ:BOOL=ON | ||
ADIOS2_USE_ZeroMQ:STRING=OFF | ||
ADIOS2_USE_ZFP:BOOL=ON | ||
MPI_C_COMPILER:FILEPATH=${MPICC} | ||
MPI_CXX_COMPILER:FILEPATH=${MPICXX} | ||
MPI_Fortran_COMPILER:FILEPATH=${MPIFC} | ||
MPIEXEC_EXTRA_FLAGS:STRING=--allow-run-as-root --oversubscribe -tcp | ||
") | ||
|
||
set(CTEST_TEST_ARGS | ||
PARALLEL_LEVEL 1 | ||
INCLUDE "^(Interface|Install)" | ||
) | ||
set(CTEST_CMAKE_GENERATOR "Unix Makefiles") | ||
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}") | ||
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake) |
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} xlc) | ||
set(ENV{CXX} xlc++) | ||
set(ENV{FC} xlf) | ||
|
||
set(dashboard_cache " | ||
ADIOS2_USE_BZip2:BOOL=OFF | ||
ADIOS2_USE_Blosc:BOOL=OFF | ||
ADIOS2_USE_DataMan:BOOL=OFF | ||
ADIOS2_USE_Fortran:BOOL=ON | ||
ADIOS2_USE_HDF5:BOOL=ON | ||
ADIOS2_USE_MPI:BOOL=OFF | ||
ADIOS2_USE_Python:BOOL=OFF | ||
ADIOS2_USE_SZ:BOOL=ON | ||
ADIOS2_USE_ZeroMQ:STRING=OFF | ||
ADIOS2_USE_ZFP:BOOL=ON | ||
") | ||
|
||
set(CTEST_TEST_ARGS | ||
INCLUDE "^(Interface|Install)" | ||
) | ||
set(CTEST_CMAKE_GENERATOR "Unix Makefiles") | ||
list(APPEND CTEST_UPDATE_NOTES_FILES "${CMAKE_CURRENT_LIST_FILE}") | ||
include(${CMAKE_CURRENT_LIST_DIR}/ci-common.cmake) |
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