From c6affbb8043734edc6b397979ebdd67a604dc48b Mon Sep 17 00:00:00 2001 From: Sebastian Rittau Date: Fri, 18 Oct 2024 12:09:05 +0200 Subject: [PATCH] [CI] Pin Ubuntu in third party stubtest (#12846) This fixes a problem with gdb changing between the Ubuntu versions. --- .github/workflows/daily.yml | 4 +++- .github/workflows/stubtest_third_party.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/daily.yml b/.github/workflows/daily.yml index 2062b58e0..d519cbc61 100644 --- a/.github/workflows/daily.yml +++ b/.github/workflows/daily.yml @@ -60,7 +60,9 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: ["ubuntu-latest", "windows-latest", "macos-latest"] + # As of 2024-10-18, ubuntu-latest can refer to different Ubuntu versions, + # which causes problems when testing gdb. + os: ["ubuntu-24.04", "windows-latest", "macos-latest"] shard-index: [0, 1, 2, 3] fail-fast: false steps: diff --git a/.github/workflows/stubtest_third_party.yml b/.github/workflows/stubtest_third_party.yml index 0b45a90c7..91eb3c51b 100644 --- a/.github/workflows/stubtest_third_party.yml +++ b/.github/workflows/stubtest_third_party.yml @@ -32,7 +32,9 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: ["ubuntu-latest", "windows-latest", "macos-latest"] + # As of 2024-10-18, ubuntu-latest can refer to different Ubuntu versions, + # which causes problems when testing gdb. + os: ["ubuntu-24.04", "windows-latest", "macos-latest"] fail-fast: false steps: