From 0201a6891d3482c5be24d010a37b488c37de1594 Mon Sep 17 00:00:00 2001 From: James Wainwright Date: Wed, 30 Oct 2024 10:50:18 +0000 Subject: [PATCH] [ot] .github/workflows: bump release build to ubuntu-22.04 Required to get the necessary `glib` version required for QEMU (>=2.66.0). Note that binaries build from `ubuntu-22.04` will no longer be usable from `ubuntu-20.04` due to `glibc` incompatibility. --- .github/workflows/create_release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/create_release.yml b/.github/workflows/create_release.yml index 73e599630892..2091ed9319f0 100644 --- a/.github/workflows/create_release.yml +++ b/.github/workflows/create_release.yml @@ -15,7 +15,7 @@ jobs: BUILD_DIR: build BRANCH_NAME: ${{ github.event.repository.default_branch }} RELEASE_BIN_ARCHIVE: qemu-ot-earlgrey-${{ inputs.release_tag }}-x86_64-unknown-linux-gnu.tar.gz - runs-on: ubuntu-20.04 + runs-on: ubuntu-22.04 timeout-minutes: 10 steps: - name: Check out repository