Skip to content

Commit 864d0a5

Browse files
committed
.
1 parent 8506665 commit 864d0a5

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

.github/docker/ubuntu-20.04.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,5 +68,4 @@ COPY third_party/requirements.txt /opt/umf/requirements.txt
6868
ENV USER test_user
6969
ENV USERPASS pass
7070
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
71-
RUN chown -R ${USER}:${USER} /__w
7271
USER test_user

.github/docker/ubuntu-22.04.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,5 +65,4 @@ RUN pip3 install --no-cache-dir -r /opt/umf/requirements.txt
6565
ENV USER test_user
6666
ENV USERPASS pass
6767
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
68-
RUN chown -R ${USER}:${USER} /__w
6968
USER test_user

.github/docker/ubuntu-24.04.Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,5 +64,4 @@ RUN pip3 install --no-cache-dir --break-system-packages -r /opt/umf/requirements
6464
ENV USER test_user
6565
ENV USERPASS pass
6666
RUN useradd -m "${USER}" -g sudo -p "$(mkpasswd ${USERPASS})"
67-
RUN chown -R ${USER}:${USER} /__w
6867
USER test_user

.github/workflows/reusable_basic.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ jobs:
133133
link_hwloc_statically: 'ON'
134134
cmake_ver: 'default'
135135
steps:
136+
- name: Permissions for test_user
137+
run: echo ${USERPASS} | sudo -Sk chown -R test_user:test_user /__w
138+
136139
- name: Checkout
137140
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
138141
with:

0 commit comments

Comments
 (0)