Skip to content

Commit

Permalink
Merge pull request #18 from mseng10/update-github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
thewtex authored Nov 19, 2020
2 parents 024bfed + 3298978 commit 5f39cab
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 13 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,17 +13,17 @@ jobs:
- os: ubuntu-18.04
c-compiler: "gcc"
cxx-compiler: "g++"
itk-git-tag: "v5.1.0"
itk-git-tag: "v5.1.1"
cmake-build-type: "MinSizeRel"
- os: windows-2019
c-compiler: "cl.exe"
cxx-compiler: "cl.exe"
itk-git-tag: "v5.1.0"
itk-git-tag: "v5.1.1"
cmake-build-type: "Release"
- os: macos-10.15
c-compiler: "clang"
cxx-compiler: "clang++"
itk-git-tag: "v5.1.0"
itk-git-tag: "v5.1.1"
cmake-build-type: "MinSizeRel"

steps:
Expand Down Expand Up @@ -100,6 +100,9 @@ jobs:
set(dashboard_no_clean 1)
set(ENV{CC} ${{ matrix.c-compiler }})
set(ENV{CXX} ${{ matrix.cxx-compiler }})
if(WIN32)
set(ENV{PATH} "\${CTEST_DASHBOARD_ROOT}/ITK-build/bin;\$ENV{PATH}")
endif()
set(dashboard_cache "
ITK_DIR:PATH=\${CTEST_DASHBOARD_ROOT}/ITK-build
BUILD_TESTING:BOOL=ON
Expand Down Expand Up @@ -128,9 +131,9 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version: [35, 36, 37, 38]
python-version: [36, 37, 38, 39]
include:
- itk-python-git-tag: "v5.1.0.post2"
- itk-python-git-tag: "v5.1.1.post1"

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -166,7 +169,7 @@ jobs:
max-parallel: 2
matrix:
include:
- itk-python-git-tag: "v5.1.0.post2"
- itk-python-git-tag: "v5.1.1.post1"

steps:
- uses: actions/checkout@v2
Expand All @@ -193,9 +196,9 @@ jobs:
strategy:
max-parallel: 2
matrix:
python-version-minor: [5, 6, 7, 8]
python-version-minor: [6, 7, 8, 9]
include:
- itk-python-git-tag: "v5.1.0.post2"
- itk-python-git-tag: "v5.1.1.post1"

steps:
- uses: actions/checkout@v2
Expand Down
4 changes: 1 addition & 3 deletions README.rst
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
ITKBSplineGradient
==================

.. image:: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_apis/build/status/InsightSoftwareConsortium.ITKBSplineGradient?branchName=master
:target: https://dev.azure.com/ITKBSplineGradient/ITKBSplineGradient/_build/latest?definitionId=1&branchName=master
:alt: Build status
.. image:: https://github.com/InsightSoftwareConsortium/ITKBSplineGradient/workflows/Build,%20test,%20package/badge.svg

Overview
--------
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@

setup(
name='itk-bsplinegradient',
version='0.2.1',
version='0.2.2',
author='Matthew McCormick',
author_email='[email protected]',
packages=['itk'],
Expand Down Expand Up @@ -46,6 +46,6 @@
keywords='ITK InsightToolkit Image-Gradient B-spline',
url=r'https://github.com/InsightSoftwareConsortium/ITKBSplineGradient',
install_requires=[
r'itk>=5.1.0.post2'
r'itk>=5.1.1'
]
)

0 comments on commit 5f39cab

Please sign in to comment.