From a2da162b04490d041050b8180a102d18ac35d21c Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 Sep 2025 11:20:37 -0400 Subject: [PATCH 1/2] added top-level build script for all additivefoam solvers and utilities --- Allwmake | 10 ++++++++++ applications/Allwmake | 10 ++++++++++ 2 files changed, 20 insertions(+) create mode 100755 Allwmake create mode 100755 applications/Allwmake diff --git a/Allwmake b/Allwmake new file mode 100755 index 0000000..037fad3 --- /dev/null +++ b/Allwmake @@ -0,0 +1,10 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # Run from this directory + +# Parse arguments for library compilation +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments + +# Compile AdditiveFOAM libraries and applications +applications/Allwmake $targetType $* + +#------------------------------------------------------------------------------ diff --git a/applications/Allwmake b/applications/Allwmake new file mode 100755 index 0000000..fa65060 --- /dev/null +++ b/applications/Allwmake @@ -0,0 +1,10 @@ +#!/bin/sh +cd ${0%/*} || exit 1 # Run from this directory + +# Parse arguments for library compilation +. $WM_PROJECT_DIR/wmake/scripts/AllwmakeParseArguments + +wmake -all $targetType solvers +wmake -all $targetType utilities + +#------------------------------------------------------------------------------ From d438e2745ab8de379201e3e7fa4b9113361f22f6 Mon Sep 17 00:00:00 2001 From: John Date: Mon, 29 Sep 2025 11:24:49 -0400 Subject: [PATCH 2/2] fixup for CI --- .github/workflows/CI.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bd25471..a8b0756 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -29,7 +29,6 @@ jobs: - name: Build AdditiveFOAM run: | . /opt/openfoam10/etc/bashrc - cd applications/solvers/additiveFoam ./Allwmake - name: Test AdditiveFOAM run: |