Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/build-test-cxx.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ on:
description: 'Git version tag or commit hash for the base ITK build'
required: false
type: string
default: 'v5.3.0'
default: 'v5.4rc01'
itk-module-deps:
description: 'Colon-delimited list of ITK remote module dependencies to build. Format as module_name@tag:...'
# example: MeshToPolyData@3ad8f08:[email protected]
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:

- name: Get specific version of CMake, Ninja
uses: lukka/[email protected]

- name: 'Specific XCode version'
if: matrix.os == 'macos-12'
run: |
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
if [[ -n $MODULE_ARGS ]]; then
echo "Building with modules: $MODULE_ARGS"
fi

cmake -DCMAKE_C_COMPILER:FILEPATH="${{ matrix.c-compiler }}" -DBUILD_SHARED_LIBS:BOOL=ON -DCMAKE_CXX_COMPILER="${{ matrix.cxx-compiler }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.cmake-build-type }} -DBUILD_TESTING:BOOL=OFF ${{ inputs.itk-cmake-options }} ${MODULE_ARGS} -GNinja ../ITK
ninja

Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
if($MODULE_ARGS) {
echo "Building with parameters: ${{ inputs.itk-cmake-options }} $MODULE_ARGS"
}

cmake -DCMAKE_C_COMPILER:FILEPATH="${{ matrix.c-compiler }}" -DBUILD_SHARED_LIBS:BOOL=ON -DCMAKE_CXX_COMPILER="${{ matrix.cxx-compiler }}" -DCMAKE_BUILD_TYPE:STRING=${{ matrix.cmake-build-type }} -DBUILD_TESTING:BOOL=OFF ${{ inputs.itk-cmake-options }} $MODULE_ARGS.split(" ") -GNinja ../ITK
ninja

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-test-package-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ on:
description: 'Github release version tag for the ITKPythonBuilds build archive to use'
required: false
type: string
default: 'v5.3.0'
default: 'v5.4rc01'
itk-python-package-tag:
# See https://github.com/InsightSoftwareConsortium/ITKPythonPackage
description: 'Git tag or commit hash for ITKPythonPackage build scripts to use'
required: false
type: string
default: '26d0b48d13c485ad36997e8210088dc1fe50f469'
default: '5ad02309321621cdc7269b9b68a35013c912271c'
itk-python-package-org:
description: 'Github organization name for fetching ITKPythonPackage build scripts'
required: false
Expand Down