Skip to content

Commit

Permalink
ci: add Ubuntu 24.04 jobs
Browse files Browse the repository at this point in the history
  • Loading branch information
lzaoral committed Feb 26, 2025
1 parent b6c8ea6 commit 4293c8c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ on:

jobs:
ubuntu:
name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 22.04 && ' with sanitizers' || '' }})
name: Ubuntu ${{ matrix.version }} (${{ matrix.compiler }}${{ matrix.version == 24.04 && ' with sanitizers' || '' }})
strategy:
fail-fast: false
matrix:
compiler: [clang, gcc]
version: [22.04]
version: [22.04, 24.04]

runs-on: ubuntu-${{ matrix.version }}
env:
Expand All @@ -38,7 +38,7 @@ jobs:

- name: Build and check
run: |
if [[ "${{ matrix.version }}" == 22.04 ]]; then
if [[ "${{ matrix.version }}" == 24.04 ]]; then
make distcheck-sanitizers
else
make distcheck
Expand Down

0 comments on commit 4293c8c

Please sign in to comment.