From 381f9ae080922893224eb68ec638665f6e2b02a1 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 b3a3ee1fd4e..9077bd03481 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 490c148cc24..901121b7f77 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: