Skip to content

Commit

Permalink
switch testing to ubuntu-24.04 and gcc 14
Browse files Browse the repository at this point in the history
  • Loading branch information
neri14 authored Aug 11, 2024
1 parent 33c4e7c commit 6d6dbe2
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ on:

jobs:
build-and-test:
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
env:
CC: gcc-14
CXX: g++-14

steps:
- name: Checkout repository
Expand All @@ -21,7 +24,8 @@ jobs:
echo github.event.action: ${{ github.event.action }}
echo github.event_name: ${{ github.event_name }}
cmake --version
gcc --version
$(CC) --version
$(CXX) --version
- name: Configure CMake
run: cmake -B ${{github.workspace}}/build
Expand Down

0 comments on commit 6d6dbe2

Please sign in to comment.