From d878d9b34ed6d90b622e8647aa2d57e612d991e6 Mon Sep 17 00:00:00 2001 From: Ziv Yaniv Date: Wed, 14 Aug 2024 09:52:02 -0400 Subject: [PATCH 1/2] Updated the SimpleITK version to latest available release 2.4.0. Update the toolkit version and set the SimpleITK_BUILD_DISTRIBUTE flag to ON so that the correct version is listed, e.g. "SimpleITK Version: 2.4.0 (ITK 5.4)" and not "SimpleITK Version: 2.4.0-ga3e11 (ITK 5.4)" which is printed without turning the flag on. --- configure | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configure b/configure index b04d102..1f39714 100755 --- a/configure +++ b/configure @@ -7,7 +7,7 @@ # Requires git and cmake # export SimpleITKGit=https://github.com/SimpleITK/SimpleITK -export SITKTAG=v2.3.0 +export SITKTAG=v2.4.0 export PKGBASED=$(pwd) echo ${PKGBASED} @@ -50,6 +50,7 @@ mkdir -p SITK cmake \ -DWRAP_DEFAULT=OFF\ -DWRAP_R=ON \ + -DSimpleITK_BUILD_DISTRIBUTE=ON \ -DBUILD_EXAMPLES=OFF \ -DBUILD_TESTING=OFF \ -DCMAKE_BUILD_TYPE=MinSizeRel \ From b71d0498383dadbd6cef94eed4c756d5dd52c1a1 Mon Sep 17 00:00:00 2001 From: Ziv Yaniv Date: Mon, 19 Aug 2024 09:06:14 -0400 Subject: [PATCH 2/2] Change GitHub workflow runner. Runner was set to macos-latest (synonym for macos-14) which currently has 3CPUs (M1), 7GB RAM and 14GB SSD. The build was timing out after 6 hours. Changing to macos-13 configuration which has 4 CPUs, 14GB RAM and 14GB SSD. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 825c6ef..ac20f0b 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: R: [ '4.3.1' ] - os: [ 'macos-latest' ] + os: [ 'macos-13' ] runs-on: ${{ matrix.os }} name: ${{ matrix.R }} ${{ matrix.os }} build env: