Skip to content

Commit 487dffa

Browse files
committed
Specify container
1 parent a614edb commit 487dffa

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/python_wheel_build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
- x64
2222
env:
2323
WORKDIR: /home/runner/work/root
24+
container:
25+
image: registry.cern.ch/root-ci/ubuntu2404:buildready
26+
options: '--security-opt label=disable --rm'
2427
steps:
2528
- name: Checkout
2629
uses: actions/checkout@v4
@@ -30,11 +33,14 @@ jobs:
3033
- name: Set up Python
3134
uses: actions/setup-python@v5
3235

36+
- name: Update repositories
37+
run: apt-get update
38+
3339
- name: Install Kerberos utilities
34-
run: sudo apt-get install -y krb5-user
40+
run: apt-get install -y krb5-user
3541

3642
- name: Install XRootD client
37-
run: sudo apt-get -y install xrootd-client
43+
run: apt-get -y install xrootd-client
3844

3945
- name: Configure large ccache
4046
if: ${{ matrix.is_special }}

0 commit comments

Comments
 (0)