From 22da93ec15f15bd5eedce11e537c8f5085cd1578 Mon Sep 17 00:00:00 2001 From: Satoshi Otomakan Date: Mon, 14 Oct 2024 14:08:57 +0200 Subject: [PATCH] Try to install any libc and libstd versions --- .github/workflows/linux-ci.yml | 2 +- tools/install-sys-dependencies-linux | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linux-ci.yml b/.github/workflows/linux-ci.yml index 653fbf0c135..376494010c3 100644 --- a/.github/workflows/linux-ci.yml +++ b/.github/workflows/linux-ci.yml @@ -13,7 +13,7 @@ concurrency: jobs: build: runs-on: ubuntu-latest - if: github.event.pull_request.draft == false +# if: github.event.pull_request.draft == false steps: - uses: actions/checkout@v3 - name: Install system dependencies diff --git a/tools/install-sys-dependencies-linux b/tools/install-sys-dependencies-linux index 49aa6fbd81d..b80e5db970a 100755 --- a/tools/install-sys-dependencies-linux +++ b/tools/install-sys-dependencies-linux @@ -4,9 +4,9 @@ set -e # Downgrade libc to temporarily fix https://github.com/actions/runner-images/issues/8659 if [[ "$1" == "ci" ]]; then - LIBSTD_PACKAGE_VERSION="12.3.0-1ubuntu1~22.04" + LIBSTD_PACKAGE_VERSION="12.3.0-*" # Bump this version if the CI has been broken due to the packages update. - LIBC_PACKAGE_VERSION="2.35-0ubuntu3.9" + LIBC_PACKAGE_VERSION="2.35-*" echo "Remove GCC 13 from runner image - runner-images/8659 workaround" echo "NOTE: Bump $LIBC_PACKAGE_VERSION version if the CI has been broken due to the packages update"