Skip to content

Commit

Permalink
Merge pull request #2503 from chuckatkins/cray-fortran-install-modules
Browse files Browse the repository at this point in the history
Fortran: Fix module install rules for Cray Fortran
  • Loading branch information
Chuck Atkins authored Nov 5, 2020
2 parents e2a40b8 + f3f9caa commit ce24099
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
28 changes: 16 additions & 12 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ on:
jobs:
linux:
runs-on: ubuntu-latest
container: ${{ matrix.container }}
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux
container:
image: ${{ matrix.container }}
options: --shm-size=1g
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux

strategy:
fail-fast: false
Expand Down Expand Up @@ -61,10 +63,10 @@ jobs:
runs-on: ubuntu-latest
container:
image: ${{ matrix.container }}
options: --privileged
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux
options: --privileged --shm-size=1g
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux

strategy:
fail-fast: false
Expand Down Expand Up @@ -103,10 +105,12 @@ jobs:

linux_spack:
runs-on: ubuntu-latest
container: ${{ matrix.container }}
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux
container:
image: ${{ matrix.container }}
options: --shm-size=1g
env:
GH_YML_JOBNAME: ${{ matrix.jobname }}
GH_YML_OS: Linux

strategy:
fail-fast: false
Expand Down
2 changes: 2 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ resources:
containers:
- container: el7-intel-ohpc
image: ornladios/adios2:ci-el7-intel-ohpc
options: --shm-size=1g
- container: el7-intel-openmpi-ohpc
image: ornladios/adios2:ci-el7-intel-openmpi-ohpc
options: --shm-size=1g

jobs:
- job: windows
Expand Down
3 changes: 3 additions & 0 deletions bindings/Fortran/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,9 @@ install(
COMPONENT adios2_fortran-development
FILES_MATCHING
PATTERN "adios2*.mod"
PATTERN "adios2*.smod"
PATTERN "ADIOS2*.mod"
PATTERN "ADIOS2*.smod"
PATTERN "CMakeFiles" EXCLUDE
)

Expand Down

0 comments on commit ce24099

Please sign in to comment.