From a89fd1bc9a65b2644d78a7cb589ff5c1eef1b31e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mos=C3=A8=20Giordano?= Date: Sun, 12 Jan 2025 10:59:34 +0000 Subject: [PATCH] [CI] Downgrade runner image to Ubuntu 22.04 to avoid problems --- .github/workflows/ci.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e507f2b5..d880dc6b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,11 @@ jobs: test: name: Julia ${{ matrix.julia-version }} - x64 - runner ${{ matrix.runner }} - SquashFS ${{ matrix.squashfs }} timeout-minutes: 60 - runs-on: ubuntu-latest + # With unprivileged runner on Ubuntu 24.04 we run into + # + # --> Creating overlay workdir at /proc + # At line 572, ABORTED (13: Permission denied)! + runs-on: ubuntu-22.04 env: BINARYBUILDER_RUNNER: ${{ matrix.runner }} BINARYBUILDER_USE_SQUASHFS: ${{ matrix.squashfs }}