Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 6 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,24 @@ permissions:
jobs:
check-meson:
name: Ubuntu meson build
runs-on: ${{ matrix.os }}
runs-on: ubuntu-latest
container:
image: debian:unstable
strategy:
matrix:
os: ['ubuntu-24.04']
compiler: ['gcc', 'clang']

env:
CC: ${{ matrix.compiler }}
BASE_CFLAGS: -Wp,-D_FORTIFY_SOURCE=2
BUILDDIR: builddir
CONFIG_OPTS: -Dinstalled_tests=true
CONFIG_OPTS: -Dwerror=true -Dinstalled_tests=true

steps:
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install -y \
apt-get update
apt-get install -y \
${{ matrix.compiler }} \
attr \
automake \
Expand Down
Loading