From fd8aacc1a48bfaa887219e8f53a95eab74dac066 Mon Sep 17 00:00:00 2001 From: RoloEdits Date: Fri, 18 Jul 2025 07:16:21 -0700 Subject: [PATCH] build: lower ubuntu version from `24.04` to `22.04` (#13983) --- .github/workflows/release.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 273680e49..d6901fbef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -61,12 +61,15 @@ jobs: build: [x86_64-linux, aarch64-linux, x86_64-macos, x86_64-windows] #, x86_64-win-gnu, win32-msvc include: - build: x86_64-linux - os: ubuntu-24.04 + # WARN: When changing this to a newer version, make sure that the GLIBC isnt too new, as this can cause issues + # with portablity on older systems that dont follow ubuntus more rapid release cadence. + os: ubuntu-22.04 rust: stable target: x86_64-unknown-linux-gnu cross: false - build: aarch64-linux - os: ubuntu-24.04-arm + # Version should be kept in lockstep with the x86_64 version + os: ubuntu-22.04-arm rust: stable target: aarch64-unknown-linux-gnu cross: false @@ -291,7 +294,7 @@ jobs: file_glob: true tag: ${{ github.ref_name }} overwrite: true - + - name: Upload binaries as artifact uses: actions/upload-artifact@v4 if: env.preview == 'true'