Skip to content

Commit e78bb01

Browse files
committed
COMP: Modules need updated version of ITK
Removal of .h includes from same named .hxx files requires removal of outdated rule that is no longer relevant. This PR will update the version of ITK that is used for the remove modules." BRANCH_NAME=update-reference-itk-version for remdir_script in *.remote.cmake; do remdir="${remdir_script//*.remote.cmake/}" if [ ! -d "${remdir}" ] ;then echo "Missing directory ${remdir}" continue fi pushd "${remdir}" || exit echo "=============== $(pwd) =========" git checkout master git fetch origin git rebase origin/master git checkout -b ${BRANCH_NAME} sed 's/itk-git-tag : .*/itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"/g' $( fgrep -Rl "itk-git-tag:" |fgrep yml ) git status diff_line_no=$(git diff |wc -l ) if [ "${diff_line_no}" -ne 0 ]; then git add -p git commit -F /tmp/update_itk_msg gh pr create -a "@me" -F /tmp/update_itk_msg else echo "Skipping changes $(pwd)" fi git fetch git rebase origin/master git push origin -f ${BRANCH_NAME}:${BRANCH_NAME} popd || exit done
1 parent 28820f4 commit e78bb01

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build-test-publish.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,17 +13,17 @@ jobs:
1313
- os: ubuntu-18.04
1414
c-compiler: "gcc"
1515
cxx-compiler: "g++"
16-
itk-git-tag: "v5.2.0"
16+
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
1717
cmake-build-type: "MinSizeRel"
1818
- os: windows-2019
1919
c-compiler: "cl.exe"
2020
cxx-compiler: "cl.exe"
21-
itk-git-tag: "v5.2.0"
21+
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
2222
cmake-build-type: "Release"
2323
- os: macos-10.15
2424
c-compiler: "clang"
2525
cxx-compiler: "clang++"
26-
itk-git-tag: "v5.2.0"
26+
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
2727
cmake-build-type: "MinSizeRel"
2828

2929
steps:
@@ -258,7 +258,7 @@ jobs:
258258
- os: ubuntu-18.04
259259
c-compiler: "gcc"
260260
cxx-compiler: "g++"
261-
itk-git-tag: "v5.2.0"
261+
itk-git-tag: "a89145bccda6a36f42cfdd45d3a6b27234ff54fe"
262262
cmake-build-type: "Release"
263263

264264
steps:

0 commit comments

Comments
 (0)