File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,8 +13,9 @@ RUN /install.sh
13
13
# discover user home directory and fail a few LIT tests. Fixes UID and GID to
14
14
# 1001, that is used as default by GitHub Actions.
15
15
RUN groupadd -g 1001 sycl && useradd sycl -u 1001 -g 1001 -m -s /bin/bash
16
- # Add sycl user to video group so that it can access GPU
16
+ # Add sycl user to video/irc groups so that it can access GPU
17
17
RUN usermod -aG video sycl
18
+ RUN usermod -aG irc sycl
18
19
# Allow sycl user to run as sudo
19
20
RUN echo "sycl ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
20
21
Original file line number Diff line number Diff line change @@ -27,8 +27,9 @@ RUN apt install -yqq libnuma-dev wget gnupg2 && \
27
27
# discover user home directory and fail a few LIT tests. Fixes UID and GID to
28
28
# 1001, that is used as default by GitHub Actions.
29
29
RUN groupadd -g 1001 sycl && useradd sycl -u 1001 -g 1001 -m -s /bin/bash
30
- # Add sycl user to video group so that it can access GPU
30
+ # Add sycl user to video/irc groups so that it can access GPU
31
31
RUN usermod -aG video sycl
32
+ RUN usermod -aG irc sycl
32
33
33
34
COPY actions/cached_checkout /actions/cached_checkout
34
35
COPY actions/cleanup /actions/cleanup
You can’t perform that action at this time.
0 commit comments