ci: add sudo passwordless configuration for manylinux self-hosted workflow

- Configure root user with passwordless sudo access
- Required for subsequent gh installation step in manylinux build environment
This commit is contained in:
Junya Morioka
2025-12-13 18:44:15 +09:00
parent df77e68130
commit b88d206f75
@@ -71,6 +71,11 @@ jobs:
time \ time \
patchelf patchelf
- name: Configure sudo
shell: bash
run: |
echo "root ALL=(ALL) NOPASSWD:ALL" >> /etc/sudoers
- name: Install gh - name: Install gh
shell: bash shell: bash
run: | run: |