From f24a506ada04433276093ef01cf7881785ca9043 Mon Sep 17 00:00:00 2001 From: Jonah Graham Date: Fri, 9 Dec 2022 10:02:08 -0500 Subject: [PATCH] Use Ubuntu that contains GDB 10 Until we are ready for GDB 12 in the testsuite, run the GHA checks against GDB 10 by chaning base OS to Ubuntu 20.04 instead of latest (which recently changed to 22.04) Worksaround #210 --- .github/workflows/build-test.yml | 2 +- .github/workflows/code-cleanliness.yml | 2 +- .github/workflows/report.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test.yml b/.github/workflows/build-test.yml index 538d95509af..7353824f9d4 100644 --- a/.github/workflows/build-test.yml +++ b/.github/workflows/build-test.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 timeout-minutes: 90 steps: diff --git a/.github/workflows/code-cleanliness.yml b/.github/workflows/code-cleanliness.yml index 01df1ff581d..a7062e63062 100644 --- a/.github/workflows/code-cleanliness.yml +++ b/.github/workflows/code-cleanliness.yml @@ -9,7 +9,7 @@ on: jobs: build: - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v3 diff --git a/.github/workflows/report.yml b/.github/workflows/report.yml index 9c481e5b230..307b2f16847 100644 --- a/.github/workflows/report.yml +++ b/.github/workflows/report.yml @@ -9,7 +9,7 @@ on: jobs: unit-test-results: name: Unit Test Results - runs-on: ubuntu-latest + runs-on: ubuntu-20.04 if: github.event.workflow_run.conclusion != 'skipped' steps: