We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a614edb commit 487dffaCopy full SHA for 487dffa
.github/workflows/python_wheel_build.yml
@@ -21,6 +21,9 @@ jobs:
21
- x64
22
env:
23
WORKDIR: /home/runner/work/root
24
+ container:
25
+ image: registry.cern.ch/root-ci/ubuntu2404:buildready
26
+ options: '--security-opt label=disable --rm'
27
steps:
28
- name: Checkout
29
uses: actions/checkout@v4
@@ -30,11 +33,14 @@ jobs:
30
33
- name: Set up Python
31
34
uses: actions/setup-python@v5
32
35
36
+ - name: Update repositories
37
+ run: apt-get update
38
+
39
- name: Install Kerberos utilities
- run: sudo apt-get install -y krb5-user
40
+ run: apt-get install -y krb5-user
41
42
- name: Install XRootD client
- run: sudo apt-get -y install xrootd-client
43
+ run: apt-get -y install xrootd-client
44
45
- name: Configure large ccache
46
if: ${{ matrix.is_special }}
0 commit comments