From 76352e282289510edf5ba53ab955eec96ba3f543 Mon Sep 17 00:00:00 2001 From: Jarred Wilson Date: Fri, 7 Mar 2025 11:56:08 +0000 Subject: [PATCH] fix: build linux with glibc 2.39 and QT 6.4 - build linux binaries in noble container --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 86ca81c38..86e1e6c2b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -276,6 +276,12 @@ jobs: linux-sdl: runs-on: ubuntu-24.04 needs: get-info + container: + image: ubuntu:noble + volumes: + - /proc:/proc + - /:/run/host + options: --privileged -it steps: - uses: actions/checkout@v4 with: @@ -332,6 +338,12 @@ jobs: linux-qt: runs-on: ubuntu-24.04 needs: get-info + container: + image: ubuntu:noble + volumes: + - /proc:/proc + - /:/run/host + options: --privileged -it steps: - uses: actions/checkout@v4 with: @@ -379,6 +391,12 @@ jobs: linux-sdl-gcc: runs-on: ubuntu-24.04 needs: get-info + container: + image: ubuntu:noble + volumes: + - /proc:/proc + - /:/run/host + options: --privileged -it steps: - uses: actions/checkout@v4 with: @@ -415,6 +433,12 @@ jobs: linux-qt-gcc: runs-on: ubuntu-24.04 needs: get-info + container: + image: ubuntu:noble + volumes: + - /proc:/proc + - /:/run/host + options: --privileged -it steps: - uses: actions/checkout@v4 with: