Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ENH: Update CI to ITK 5.4.0 #88

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
14 changes: 11 additions & 3 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
name: Build, test, package

on: [push,pull_request]
on:
push:
branches:
- main
tags:
- 'v*'
pull_request:
branches:
- main

jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@36e33ec40332bb8fd85bfcd3ee899f82aa108e79
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.0
with:
itk-module-deps: 'BoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91:IOScanco@10a73c1ab2de044c4dd73608f91cf52012aff5e4'

python-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@36e33ec40332bb8fd85bfcd3ee899f82aa108e79
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0
with:
itk-module-deps: 'InsightSoftwareConsortium/ITKBoneEnhancement@e6935aa760c3fa4e247ca0f4924a4fe3e420bf91'
secrets:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/clang-format-linter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4
with:
fetch-depth: 1
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master
18 changes: 9 additions & 9 deletions .github/workflows/test-python-hasi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@ jobs:
strategy:
max-parallel: 3
matrix:
os: [ubuntu-18.04, windows-2019, macos-10.15]
os: [ubuntu-22.04, windows-2022, macos-10.15]
include:
- os: ubuntu-18.04
- os: windows-2019
- os: ubuntu-22.04
- os: windows-2022
- os: macos-10.15

steps:
- uses: actions/checkout@v1
- uses: actions/checkout@v4

- name: Set up Python 3.7
- name: Set up Python 3.11
uses: actions/setup-python@v1
with:
python-version: 3.7
python-version: 3.11

- name: Setup ipfs
uses: ibnesayeed/setup-ipfs@master
Expand All @@ -37,9 +37,9 @@ jobs:
- name: Install build dependencies
run: |
python -m pip install --upgrade pip
python -m pip install itk==5.2.0.post2
python -m pip install itk-shape==0.2.1
python -m pip install dwd==1.0.1
python -m pip install itk==5.4.0
python -m pip install itk-shape==0.4.0
python -m pip install dwd==1.0.5
python -m pip install seaborn
python -m pip install matplotlib
python -m pip install pytest
Expand Down
Loading