From df12e4931be836bda48c202ebc94083eb09e736c Mon Sep 17 00:00:00 2001 From: Benjamin Brock Date: Thu, 25 Jul 2024 13:32:05 -0700 Subject: [PATCH] Verbose build for debugging --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9cc88ab..e7d4618 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -34,8 +34,8 @@ jobs: run: | sudo apt-get update sudo apt-get install libhdf5-dev g++-14 - cmake -B build + CXX=g++-14 cmake -B build - name: Build - run: VERBOSE=true CXX=g++-14 make -C build -j `nproc` + run: VERBOSE=true make -C build -j `nproc` - name: Test run: ctest --test-dir ./build/test/bash