From 9d2bd531122d7f47a118a99731fcc65e61416d61 Mon Sep 17 00:00:00 2001 From: Felix Thaler Date: Mon, 28 Oct 2024 08:34:57 +0000 Subject: [PATCH 1/2] Fix Parmetis Download URL (#99) Fixes the Parmetis download URL and thus container build. --- parmetis/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/parmetis/Dockerfile b/parmetis/Dockerfile index 1fc7ef3..d80504a 100644 --- a/parmetis/Dockerfile +++ b/parmetis/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="Marco Bettiol " ARG PARMETIS_VERSION=4.0.3 RUN cd /tmp && \ - wget -q http://glaros.dtc.umn.edu/gkhome/fetch/sw/parmetis/parmetis-${PARMETIS_VERSION}.tar.gz && \ + wget -q https://karypis.github.io/glaros/files/sw/parmetis/parmetis-${PARMETIS_VERSION}.tar.gz && \ tar xzf parmetis-${PARMETIS_VERSION}.tar.gz && \ cd parmetis-${PARMETIS_VERSION} && \ sed -i 's/#define IDXTYPEWIDTH 32/#define IDXTYPEWIDTH 64/g' metis/include/metis.h && \ From 3eb53033311e3cabbe9a534147c592e0bdd9b329 Mon Sep 17 00:00:00 2001 From: Felix Thaler Date: Mon, 28 Oct 2024 14:14:37 +0000 Subject: [PATCH 2/2] Added free-disk-space Step in NVHPC Build (#101) Fixes NVHPC compilation. --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5a5468c..5e0375d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -93,6 +93,12 @@ jobs: version: [24.5] steps: - uses: actions/checkout@v2 + - name: Free Disk Space (Ubuntu) + uses: jlumbroso/free-disk-space@main + with: + # this might remove tools that are actually needed, + # if set to "true" but frees about 6 GB + tool-cache: false - name: Build run: > docker build