├── .gitignore ├── README.md ├── docker-recipes ├── archived │ ├── minimal │ │ ├── rhel8-aarch64 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ │ ├── rhel8-ppc64le │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ │ ├── rhel8-x86_64 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ │ ├── ubuntu22.04-aarch64 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ │ ├── ubuntu22.04-ppc64le │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ │ └── ubuntu22.04-x86_64 │ │ │ ├── Dockerfile │ │ │ ├── build.sh │ │ │ └── spack.yaml │ ├── rhel7-runner-ppc64le │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── rhel7-runner-x86_64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── spack-minimal │ │ ├── ubuntu18.04-spack-ppc64le │ │ │ ├── Dockerfile │ │ │ └── build.sh │ │ ├── ubuntu18.04-spack-x86_64 │ │ │ ├── Dockerfile │ │ │ └── build.sh │ │ ├── ubuntu20.04-spack-ppc64le │ │ │ ├── Dockerfile │ │ │ └── build.sh │ │ └── ubuntu20.04-spack-x86_64 │ │ │ ├── Dockerfile │ │ │ └── build.sh │ ├── special │ │ └── superlu-sc │ │ │ ├── Dockerfile │ │ │ ├── PETSc_example │ │ │ ├── Makefile │ │ │ ├── ex17.c │ │ │ └── petsc-config.sh │ │ │ ├── build.sh │ │ │ ├── butterflypack-build.sh │ │ │ ├── sc19-build-all.sh │ │ │ ├── sc19-walkthrough.sh │ │ │ ├── spack.lock │ │ │ ├── spack.yaml │ │ │ ├── strumpack-build.sh │ │ │ ├── strumpack-run-py.sh │ │ │ └── superlu-dist-build.sh │ ├── ubuntu21.04-runner-ppc64le │ │ ├── Dockerfile │ │ └── build.sh │ └── ubuntu21.04-runner-x86_64 │ │ ├── Dockerfile │ │ └── build.sh ├── minimal │ ├── ubuntu20.04-aarch64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── compilers.yaml │ │ ├── modules.yaml │ │ ├── packages.yaml │ │ └── spack.yaml │ ├── ubuntu20.04-ppc64le │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── compilers.yaml │ │ ├── modules.yaml │ │ ├── packages.yaml │ │ └── spack.yaml │ └── ubuntu20.04-x86_64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── compilers.yaml │ │ ├── modules.yaml │ │ ├── packages.yaml │ │ └── spack.yaml └── runner │ ├── .gitignore │ ├── _archived │ ├── alinux2-arm64-gcc-10.5 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── alinux2023-arm64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── centos7-amd64-manylinux2014-gcc-10.2.1 │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── concretize.log │ │ ├── spack.lock │ │ └── spack.yaml │ ├── centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1 │ │ ├── CentOS-Base.repo │ │ ├── CentOS-SCL.repo │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1 │ │ ├── CentOS-Base.repo │ │ ├── CentOS-SCL.repo │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── spack.yaml │ │ └── spack.yaml.2 │ ├── manylinux2014-amd64 │ │ ├── Dockerfile │ │ └── build.sh │ ├── rhel8-aarch64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── rhel8-ppc64le │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── rhel8-x86_64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu18.04-ppc64le │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu18.04-x86_64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-amd64-clang-16 │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── spack.lock │ │ └── spack.yaml │ ├── ubuntu20.04-amd64-gcc-11.4-rocm5.4.3 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu20.04-amd64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-amd64-gcc-12.3 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-amd64-oneapi-2023.2.1 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-arm64-gcc-11.4-spack │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── spack.lock │ │ └── spack.yaml │ ├── ubuntu20.04-arm64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-arm64-gcc-12.3 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-ppc64-gcc-12.3 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-x86_64-gcc-11.2 │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── spack.lock │ │ └── spack.yaml │ ├── ubuntu20.04-x86_64-gcc-11.4-spack │ │ ├── Dockerfile │ │ ├── build.sh │ │ ├── spack.lock │ │ └── spack.yaml │ ├── ubuntu20.04-x86_64-gcc11-oneapi │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-aarch64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-gcc-11.4-rocm5.7.1 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.0.2 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.1.1 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.2.0 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.2.1 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.2.4 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.3.0 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.3.1 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.3.2 │ │ ├── Dockerfile │ │ └── build.sh │ ├── ubuntu22.04-amd64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2023.2.1 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2024.0.0 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2024.0.1 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2024.1.0 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2024.2.0 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2025.0.0 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-amd64-oneapi-2025.1.0 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-arm64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-ppc64-gcc-11.4 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-ppc64le │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu22.04-x86_64 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ └── ubuntu24.04-amd64-gcc-13.2 │ │ ├── Dockerfile │ │ ├── build.sh │ │ └── spack.yaml │ ├── ubuntu20.04-ppc64-gcc-11.4 │ ├── Dockerfile │ ├── build.sh │ └── spack.yaml │ ├── ubuntu22.04-amd64-gcc-11.4-rocm6.3.3 │ ├── Dockerfile │ └── build.sh │ ├── ubuntu24.04-amd64-gcc-13.3 │ ├── Dockerfile │ ├── assets │ │ ├── 0001-python-add-v3.12.11.patch │ │ ├── build-and-install-python.sh │ │ ├── build-and-install-tools.sh │ │ ├── secrets.env.tpl │ │ ├── setup-bashrc.sh │ │ ├── spack.python.yaml │ │ ├── spack.tools.yaml │ │ └── utilities.sh │ ├── build.sh │ └── start-build.sh │ └── ubuntu24.04-arm64-gcc-13.3 │ ├── Dockerfile │ ├── assets │ ├── 0001-python-add-v3.12.11.patch │ ├── build-and-install-python.sh │ ├── build-and-install-tools.sh │ ├── secrets.env.tpl │ ├── setup-bashrc.sh │ ├── spack.python.yaml │ ├── spack.tools.yaml │ └── utilities.sh │ ├── build.sh │ └── start-build.sh ├── figures └── SDKdefinition1.png ├── guides └── upstream-spack.md ├── spack-sdk-environments ├── compilers_and_support │ ├── README.md │ └── spack.yaml ├── data-mgmt_io-services_checkpoint-restart │ ├── README.md │ └── spack.yaml ├── e4s_ecosystem │ ├── README.md │ └── spack.yaml ├── full_stack │ └── docker.howto.txt ├── pmr_core │ ├── README.md │ └── spack.yaml ├── tools_and_technology │ ├── README.md │ └── spack.yaml ├── visualization_analysis_reduction │ ├── README.md │ └── spack.yaml └── xsdk │ ├── README.md │ └── spack.yaml └── tools ├── SpackInstallParser.sh ├── e4sListPage.py └── e4s_products.yaml /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | docker-context* 3 | nohup.out 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/README.md -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-aarch64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-aarch64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-aarch64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/rhel8-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/rhel8-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-aarch64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-aarch64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-aarch64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/minimal/ubuntu22.04-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/minimal/ubuntu22.04-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/rhel7-runner-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/rhel7-runner-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu18.04-spack-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu18.04-spack-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu18.04-spack-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu18.04-spack-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu18.04-spack-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu18.04-spack-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu18.04-spack-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu18.04-spack-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu20.04-spack-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu20.04-spack-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu20.04-spack-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu20.04-spack-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu20.04-spack-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu20.04-spack-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/spack-minimal/ubuntu20.04-spack-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/spack-minimal/ubuntu20.04-spack-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/PETSc_example/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/PETSc_example/Makefile -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/PETSc_example/ex17.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/PETSc_example/ex17.c -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/PETSc_example/petsc-config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/PETSc_example/petsc-config.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | docker build -t ecpe4s/superlu_sc:1.3 . 3 | -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/butterflypack-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/butterflypack-build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/sc19-build-all.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/sc19-build-all.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/sc19-walkthrough.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/sc19-walkthrough.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/spack.lock -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/strumpack-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/strumpack-build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/strumpack-run-py.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/strumpack-run-py.sh -------------------------------------------------------------------------------- /docker-recipes/archived/special/superlu-sc/superlu-dist-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/special/superlu-sc/superlu-dist-build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/ubuntu21.04-runner-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/ubuntu21.04-runner-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/ubuntu21.04-runner-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/ubuntu21.04-runner-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/archived/ubuntu21.04-runner-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/ubuntu21.04-runner-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/archived/ubuntu21.04-runner-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/archived/ubuntu21.04-runner-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/build.sh -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/compilers.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/modules.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/packages.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-aarch64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-aarch64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/compilers.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/modules.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/packages.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/compilers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/compilers.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/modules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/modules.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/packages.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/packages.yaml -------------------------------------------------------------------------------- /docker-recipes/minimal/ubuntu20.04-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/minimal/ubuntu20.04-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.env 2 | nohup.* 3 | -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2-arm64-gcc-10.5/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/alinux2023-arm64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/concretize.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/concretize.log -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/spack.lock -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-amd64-manylinux2014-gcc-10.2.1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-Base.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-Base.repo -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-SCL.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-SCL.repo -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-amd64-gcc-10.2.1-glibc2.17-libcrypt1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-Base.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-Base.repo -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-SCL.repo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/CentOS-SCL.repo -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/centos7-builder-arm64-gcc-10.2.1-glibc2.17-libcrypt1/spack.yaml.2: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/manylinux2014-amd64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/manylinux2014-amd64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/manylinux2014-amd64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/manylinux2014-amd64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-aarch64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-aarch64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-aarch64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/rhel8-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/rhel8-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu18.04-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu18.04-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/spack.lock -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-clang-16/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4-rocm5.4.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4-rocm5.4.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4-rocm5.4.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4-rocm5.4.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-gcc-12.3/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-amd64-oneapi-2023.2.1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/spack.lock -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4-spack/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-arm64-gcc-12.3/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-ppc64-gcc-12.3/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/spack.lock -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.2/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/spack.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/spack.lock -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc-11.4-spack/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu20.04-x86_64-gcc11-oneapi/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-aarch64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-aarch64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-aarch64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-aarch64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-aarch64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-aarch64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm5.7.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm5.7.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm5.7.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm5.7.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.0.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.0.2/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.0.2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.0.2/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.1.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.1.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.1.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.1.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.2.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.2/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4-rocm6.3.2/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2023.2.1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.0/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.0.1/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.1.0/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2024.2.0/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.0.0/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-amd64-oneapi-2025.1.0/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-arm64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64le/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64le/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64le/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64le/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-ppc64le/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-ppc64le/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-x86_64/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-x86_64/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-x86_64/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-x86_64/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu22.04-x86_64/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu22.04-x86_64/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/_archived/ubuntu24.04-amd64-gcc-13.2/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu20.04-ppc64-gcc-11.4/spack.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu22.04-amd64-gcc-11.4-rocm6.3.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu22.04-amd64-gcc-11.4-rocm6.3.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu22.04-amd64-gcc-11.4-rocm6.3.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu22.04-amd64-gcc-11.4-rocm6.3.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/0001-python-add-v3.12.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/0001-python-add-v3.12.11.patch -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/build-and-install-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/build-and-install-python.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/build-and-install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/build-and-install-tools.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/secrets.env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/secrets.env.tpl -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/setup-bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/setup-bashrc.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/spack.python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/spack.python.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/spack.tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/spack.tools.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/assets/utilities.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/start-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-amd64-gcc-13.3/start-build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/Dockerfile -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/0001-python-add-v3.12.11.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/0001-python-add-v3.12.11.patch -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/build-and-install-python.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/build-and-install-python.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/build-and-install-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/build-and-install-tools.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/secrets.env.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/secrets.env.tpl -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/setup-bashrc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/setup-bashrc.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/spack.python.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/spack.python.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/spack.tools.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/spack.tools.yaml -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/utilities.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/assets/utilities.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/build.sh -------------------------------------------------------------------------------- /docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/start-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/docker-recipes/runner/ubuntu24.04-arm64-gcc-13.3/start-build.sh -------------------------------------------------------------------------------- /figures/SDKdefinition1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/figures/SDKdefinition1.png -------------------------------------------------------------------------------- /guides/upstream-spack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/guides/upstream-spack.md -------------------------------------------------------------------------------- /spack-sdk-environments/compilers_and_support/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/compilers_and_support/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/compilers_and_support/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/compilers_and_support/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/data-mgmt_io-services_checkpoint-restart/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/data-mgmt_io-services_checkpoint-restart/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/data-mgmt_io-services_checkpoint-restart/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/data-mgmt_io-services_checkpoint-restart/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/e4s_ecosystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/e4s_ecosystem/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/e4s_ecosystem/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/e4s_ecosystem/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/full_stack/docker.howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/full_stack/docker.howto.txt -------------------------------------------------------------------------------- /spack-sdk-environments/pmr_core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/pmr_core/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/pmr_core/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/pmr_core/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/tools_and_technology/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/tools_and_technology/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/tools_and_technology/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/tools_and_technology/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/visualization_analysis_reduction/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/visualization_analysis_reduction/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/visualization_analysis_reduction/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/visualization_analysis_reduction/spack.yaml -------------------------------------------------------------------------------- /spack-sdk-environments/xsdk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/xsdk/README.md -------------------------------------------------------------------------------- /spack-sdk-environments/xsdk/spack.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/spack-sdk-environments/xsdk/spack.yaml -------------------------------------------------------------------------------- /tools/SpackInstallParser.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/tools/SpackInstallParser.sh -------------------------------------------------------------------------------- /tools/e4sListPage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/tools/e4sListPage.py -------------------------------------------------------------------------------- /tools/e4s_products.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/UO-OACISS/e4s/HEAD/tools/e4s_products.yaml --------------------------------------------------------------------------------