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
1313# discover user home directory and fail a few LIT tests. Fixes UID and GID to
1414# 1001, that is used as default by GitHub Actions.
1515RUN 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
1717RUN usermod -aG video sycl
18+ RUN usermod -aG irc sycl
1819# Allow sycl user to run as sudo
1920RUN echo "sycl ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
2021
Original file line number Diff line number Diff line change @@ -27,8 +27,9 @@ RUN apt install -yqq libnuma-dev wget gnupg2 && \
2727# discover user home directory and fail a few LIT tests. Fixes UID and GID to
2828# 1001, that is used as default by GitHub Actions.
2929RUN 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
3131RUN usermod -aG video sycl
32+ RUN usermod -aG irc sycl
3233
3334COPY actions/cached_checkout /actions/cached_checkout
3435COPY actions/cleanup /actions/cleanup
You can’t perform that action at this time.
0 commit comments