Skip to content

Commit

Permalink
Changed the permissions of the directory mount (#727)
Browse files Browse the repository at this point in the history
Changed the permissions of the directory mount so that all users can
access and not just rmguser
  • Loading branch information
calvinp0 committed Feb 5, 2024
2 parents 0262509 + e906001 commit 67a931a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/cont_int.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -243,4 +246,4 @@ jobs:
flags: unittests
name: codecov-umbrella
verbose: true
fail_ci_if_error: true
fail_ci_if_error: false
2 changes: 1 addition & 1 deletion dockerfiles/entrywrapper.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit 67a931a

Please sign in to comment.