-
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.
Merge pull request #3501 from vicentebolea/stop-installing-empty-dirs
cmake: do not install empty sst dirs
- Loading branch information
Showing
9 changed files
with
50 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# KW's stuff | ||
**/CMakeLists.txt @vicentebolea @caitlinross | ||
*.cmake @vicentebolea @caitlinross | ||
|
||
# Vicente's stuff | ||
*.sh @vicentebolea | ||
*.bash @vicentebolea | ||
*.in @vicentebolea | ||
*.yml @vicentebolea | ||
*.yaml @vicentebolea | ||
*.in @vicentebolea | ||
*.json @vicentebolea | ||
*.txt @vicentebolea | ||
scripts/ @vicentebolea | ||
.github/ @vicentebolea | ||
.circleci/ @vicentebolea | ||
source/adios2/toolkit/sst/dp/mpi_dp.c @vicentebolea |
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG BASE_IMAGE=almalinux/almalinux:8 | ||
ARG BASE_IMAGE=almalinux:8 | ||
FROM $BASE_IMAGE | ||
|
||
RUN dnf upgrade -y && \ | ||
|
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,14 @@ | ||
ARG BASE_IMAGE=ornladios/adios2:ci-spack-el8-base | ||
FROM $BASE_IMAGE | ||
|
||
RUN yum config-manager --add-repo http://developer.download.nvidia.com/compute/cuda/repos/rhel8/x86_64/cuda-rhel8.repo | ||
|
||
# Install the gcc fortran compiler missing from the base image | ||
RUN dnf install -y gcc-gfortran cuda && \ | ||
dnf clean all | ||
|
||
# Add the compilers to spack | ||
RUN . /opt/spack/share/spack/setup-env.sh && \ | ||
spack compiler rm --scope system gcc && \ | ||
spack compiler add --scope system && \ | ||
spack config --scope system add "packages:all:compiler:[gcc]" |
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
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
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