Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
mercybassey committed Mar 11, 2024
1 parent f8de2bb commit 7eb18fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/parsl+flux.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

container:
image: ${{ matrix.container }}
options: "--platform=linux/amd64 -it --init"
options: "--platform=linux/amd64 --user root -it --init"

name: ${{ matrix.container }}
steps:
Expand All @@ -32,6 +32,11 @@ jobs:
apt-get update && apt-get install -y python3-pip curl
pip3 install . -r test-requirements.txt
- name: Create Non-Root User
run: |
useradd -m testuser
chown -R testuser:testuser .
- name: Verify Parsl Installation
run: |
make local_thread_test
Expand Down

0 comments on commit 7eb18fa

Please sign in to comment.