From 4dbabd00dadd5c2c04e9aa8e2e63d7f2425d6681 Mon Sep 17 00:00:00 2001 From: Calvin Date: Mon, 5 Feb 2024 09:09:27 +0000 Subject: [PATCH 1/2] Changed the permissions of the directory mount so that all users can access and not just rmguser --- dockerfiles/entrywrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dockerfiles/entrywrapper.sh b/dockerfiles/entrywrapper.sh index 7ba2e0313..20988d9b9 100644 --- a/dockerfiles/entrywrapper.sh +++ b/dockerfiles/entrywrapper.sh @@ -13,7 +13,7 @@ check_and_adjust_permissions() { # Check if it's a directory if [ -d "$dir" ]; then # Adjust permissions for the directory - chown -R rmguser:rmguser "$dir" + chmod -R 777 "$dir" fi done } From e906001ce27cb0e0f27aa6376d2455dd33ba14a1 Mon Sep 17 00:00:00 2001 From: Calvin Date: Mon, 5 Feb 2024 17:28:56 +0200 Subject: [PATCH 2/2] CI changes - codecov issues --- .github/workflows/cont_int.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/cont_int.yml b/.github/workflows/cont_int.yml index b2bf8fc22..20d57c6f8 100644 --- a/.github/workflows/cont_int.yml +++ b/.github/workflows/cont_int.yml @@ -234,6 +234,9 @@ jobs: source ~/.bashrc conda activate arc_env make test-functional + # Wait ten seconds before running the next step + - name: Wait + run: sleep 10 - name: Code Coverage uses: codecov/codecov-action@v3 @@ -243,4 +246,4 @@ jobs: flags: unittests name: codecov-umbrella verbose: true - fail_ci_if_error: true + fail_ci_if_error: false