From 3d5f2d10ff9a17d80b74a15a734532b45d6e1642 Mon Sep 17 00:00:00 2001 From: Charlie Gunyon Date: Sun, 14 Apr 2024 14:24:10 +0200 Subject: [PATCH] Update ci.yml --- .github/workflows/ci.yml | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6fd06ce..798958f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,17 +11,11 @@ jobs: - uses: actions/checkout@v2 - name: Install dependencies run: sudo apt-get install -y --no-install-recommends libcmocka-dev + - name: Compile as C++ + run: g++ -fsyntax-only -xc++ cmp.c - name: Build library run: make -j4 - name: Build test programs run: make testprogs - - name: Run unit tests - run: make unittest - - name: Run ASAN tests - run: make addrtest - - name: Run MSAN tests - run: make memtest - - name: Run UBSAN tests - run: make ubtest - - name: Run tests without FPU (no float) - run: make nofloattest + - name: Run tests + run: make test