Skip to content

Commit 6db3abc

Browse files
committed
Revert to gigithub runner
1 parent ad985e7 commit 6db3abc

File tree

1 file changed

+10
-14
lines changed

1 file changed

+10
-14
lines changed

.github/workflows/python_wheel_build.yml

Lines changed: 10 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,9 @@ on:
1515

1616
jobs:
1717
python_wheel:
18-
runs-on:
19-
- self-hosted
20-
- linux
21-
- x64
18+
runs-on: ubuntu-latest
2219
env:
2320
WORKDIR: /home/runner/work/root
24-
container:
25-
image: registry.cern.ch/root-ci/ubuntu2404:buildready
26-
options: '--security-opt label=disable --user="ubuntu" --rm'
2721
steps:
2822
- name: Checkout
2923
uses: actions/checkout@v4
@@ -35,6 +29,15 @@ jobs:
3529
with:
3630
python-version: 3.13
3731

32+
- name: Use ccache
33+
uses: hendrikmuhs/[email protected]
34+
35+
- name: Configure large ccache
36+
run: |
37+
ccache -o max_size=5G
38+
ccache -p || true
39+
ccache -s || true
40+
3841
# - name: Set up Python Virtual Environment
3942
# run: |
4043
# python -m venv /py-venv/cibuildwheel-env
@@ -50,13 +53,6 @@ jobs:
5053
- name: Install XRootD client
5154
run: apt-get -y install xrootd-client
5255

53-
- name: Configure large ccache
54-
if: ${{ matrix.is_special }}
55-
run: |
56-
ccache -o max_size=5G
57-
ccache -p || true
58-
ccache -s || true
59-
6056
- name: Build wheels
6157
env:
6258
PIP_ROOT_USER_ACTION: ignore

0 commit comments

Comments
 (0)