From 48982139254858c70572a8c60aa8b2c436d7562c Mon Sep 17 00:00:00 2001 From: Tomas Jira Date: Tue, 6 Feb 2024 21:29:34 +0100 Subject: [PATCH] add library generation to tests --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 47b644b..e505788 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,6 +27,9 @@ jobs: - name: Configure Acorn run: cmake -B build -DBUILD_TESTING=ON -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} -DCMAKE_CXX_COMPILER=g++ + - name: Generate the Header Only Library + run: ./script/headeronly.sh > bin/acorn.h + - name: Build Acorn run: | export CPLUS_INCLUDE_PATH="$PWD/libint/install/include:$CPLUS_INCLUDE_PATH"