-
Notifications
You must be signed in to change notification settings - Fork 22
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 #37 from ecmwf-ifs/develop
Merge v1.3.0 to main
- Loading branch information
Showing
171 changed files
with
18,115 additions
and
728 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,14 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
set -x | ||
|
||
nvhpc_version=21.9 | ||
|
||
# Use Atlas' nvhpc installation script | ||
wget https://raw.githubusercontent.com/ecmwf/atlas/develop/tools/install-nvhpc.sh | ||
chmod +x install-nvhpc.sh | ||
|
||
# Install nvhpc | ||
./install-nvhpc.sh --version $nvhpc_version --prefix "${GITHUB_WORKSPACE}/nvhpc-install" --tmpdir "${RUNNER_TEMP}" | ||
|
||
exit 0 |
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,26 @@ | ||
#!/bin/bash | ||
set -euo pipefail | ||
set -x | ||
|
||
hdf5_version=1.10.8 | ||
|
||
# Choose hdf5 | ||
version_parts=($(echo ${hdf5_version} | tr "." "\n")) | ||
major_version=${version_parts[0]}.${version_parts[1]} | ||
temporary_files="${RUNNER_TEMP}/hdf5" | ||
url=https://support.hdfgroup.org/ftp/HDF5/releases/hdf5-${major_version}/hdf5-${hdf5_version}/src/hdf5-${hdf5_version}.tar.gz | ||
|
||
# Download hdf5 | ||
mkdir -p "${temporary_files}" | ||
curl --location "$url" | tar zx -C "${temporary_files}" | ||
|
||
# Build hdf5 | ||
cd "${temporary_files}/hdf5-${hdf5_version}" | ||
prefix="${GITHUB_WORKSPACE}/hdf5-install" | ||
mkdir -p "${prefix}" | ||
./configure --prefix="${prefix}" --enable-shared --enable-fortran --enable-hl | ||
make -j | ||
make install | ||
|
||
exit 0 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,19 @@ | ||
*~ | ||
.vscode | ||
ecbundle | ||
ecbundle/* | ||
build/* | ||
source/* | ||
serialbox2hdf5/venv | ||
serialbox2hdf5/serialbox | ||
benchmark/venv | ||
benchmark/rundir_* | ||
benchmark/jube-debug.log | ||
venv/ | ||
__pycache__/ | ||
.DS_Store | ||
.dace.conf | ||
.gt_cache/ | ||
.idea/ | ||
.python-version | ||
*.egg-info/ |
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
Oops, something went wrong.