Skip to content

Commit

Permalink
Specify Ubuntu 22.04 to fix GCC build error on newer versions
Browse files Browse the repository at this point in the history
  • Loading branch information
azrogers authored Sep 26, 2024
1 parent 5dd0841 commit d7fd72d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on: [push, pull_request]
jobs:
QuickChecks:
name: "Quick Checks"
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Check out repository code
uses: actions/checkout@v4
Expand All @@ -12,7 +12,7 @@ jobs:
npm install
npm run format -- --dry-run -Werror
Documentation:
runs-on: ubuntu-latest
runs-on: ubuntu-22.04
steps:
- name: Install Doxygen
run: |
Expand Down Expand Up @@ -75,11 +75,11 @@ jobs:
fail-fast: false
matrix:
compiler: [ gcc, clang ]
platform: [ ubuntu-latest, ubuntu-20.04, macos-12 ]
platform: [ ubuntu-22.04, ubuntu-20.04, macos-12 ]
build_type: [Debug, RelWithDebInfo]
exclude:
- compiler: clang
platform: ubuntu-latest
platform: ubuntu-22.04
- compiler: gcc
platform: macos-12
- compiler: gcc
Expand Down

0 comments on commit d7fd72d

Please sign in to comment.