Skip to content

Commit ee48aaa

Browse files
authored
Merge pull request #132 from thewtex/itk-5.3rc4
ENH: Update for ITK 5.3 RC 4
2 parents 875d68b + 77e4869 commit ee48aaa

File tree

2 files changed

+14
-6
lines changed

2 files changed

+14
-6
lines changed

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

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Build, test, package
33
on: [push,pull_request]
44

55
env:
6-
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
7-
itk-wheel-tag: "v5.3rc04"
6+
itk-git-tag: "v5.3rc04"
7+
itk-wheel-tag: "v5.3rc04.post2"
88

99
jobs:
1010
build-test-cxx:
@@ -177,7 +177,11 @@ jobs:
177177
run: |
178178
cd "${GITHUB_WORKSPACE}/Evaluated/ITKModuleTemplate"
179179
export ITK_PACKAGE_VERSION=${{ env.itk-wheel-tag }}
180-
../../dockcross-manylinux-download-cache-and-build-module-wheels.sh cp${{ matrix.python-version }}
180+
for tarball in "" "-manylinux2014"; do
181+
rm -rf ITKPythonPackage
182+
export TARBALL_SPECIALIZATION=${tarball}
183+
../../dockcross-manylinux-download-cache-and-build-module-wheels.sh cp${{ matrix.python-version }}
184+
done
181185
182186
- name: Publish Python package as GitHub Artifact
183187
uses: actions/upload-artifact@v1

{{cookiecutter.project_name}}/.github/workflows/build-test-package.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name: Build, test, package
33
on: [push,pull_request]
44

55
env:
6-
itk-git-tag: "d6acfd26bfcdec606d605beb1301bddfb17c05a6"
7-
itk-wheel-tag: "v5.3rc04"
6+
itk-git-tag: "v5.3rc04"
7+
itk-wheel-tag: "v5.3rc04.post2"
88

99
jobs:
1010
build-test-cxx:
@@ -157,7 +157,11 @@ jobs:
157157
- name: 'Build 🐍 Python 📦 package'
158158
run: |
159159
export ITK_PACKAGE_VERSION=${{ "{{" }} env.itk-wheel-tag {{ "}}" }}
160-
./dockcross-manylinux-download-cache-and-build-module-wheels.sh cp${{ "{{" }} matrix.python-version {{ "}}" }}
160+
for tarball in "" "-manylinux2014"; do
161+
 rm -rf ITKPythonPackage
162+
 export TARBALL_SPECIALIZATION=${tarball}
163+
./dockcross-manylinux-download-cache-and-build-module-wheels.sh cp${{ "{{" }} matrix.python-version {{ "}}" }}
164+
 done
161165

162166
- name: Publish Python package as GitHub Artifact
163167
uses: actions/upload-artifact@v1

0 commit comments

Comments
 (0)