Skip to content

Commit b8e3af9

Browse files
authored
Merge pull request #47 from jhlegarreta/TransitionCIBuildsToGHA
ENH: Transition CIs to GHA using ITK remote module build actions
2 parents ceefd31 + 8db40e4 commit b8e3af9

File tree

6 files changed

+38
-112
lines changed

6 files changed

+38
-112
lines changed

.circleci/config.yml

Lines changed: 0 additions & 63 deletions
This file was deleted.
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: Build, test, package
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- 'v*'
9+
pull_request:
10+
branches:
11+
- main
12+
13+
jobs:
14+
cxx-build-workflow:
15+
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-cxx.yml@v5.4.0
16+
17+
python-build-workflow:
18+
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/build-test-package-python.yml@v5.4.0
19+
secrets:
20+
pypi_password: ${{ secrets.pypi_password }}
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
name: clang-format linter
2+
3+
on: [push,pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- uses: InsightSoftwareConsortium/ITKClangFormatLinterAction@master

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.rst

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,13 @@
11
ITKVariationalRegistration
22
==========================
33

4-
.. |CircleCI| image:: https://circleci.com/gh/InsightSoftwareConsortium/ITKVariationalRegistration.svg?style=shield
5-
:target: https://circleci.com/gh/InsightSoftwareConsortium/ITKVariationalRegistration
4+
.. image:: https://github.com/InsightSoftwareConsortium/ITKVariationalRegistration/actions/workflows/build-test-package.yml/badge.svg
5+
:target: https://github.com/InsightSoftwareConsortium/ITKVariationalRegistration/actions/workflows/build-test-package.yml
6+
:alt: Build Status
67

7-
.. |TravisCI| image:: https://travis-ci.org/InsightSoftwareConsortium/ITKVariationalRegistration.svg?branch=master
8-
:target: https://travis-ci.org/InsightSoftwareConsortium/ITKVariationalRegistration
9-
10-
.. |AppVeyor| image:: https://img.shields.io/appveyor/ci/itkrobot/itkvariationalregistration.svg
11-
:target: https://ci.appveyor.com/project/itkrobot/itkvariationalregistration
12-
13-
=========== =========== ===========
14-
Linux macOS Windows
15-
=========== =========== ===========
16-
|CircleCI| |TravisCI| |AppVeyor|
17-
=========== =========== ===========
8+
.. image:: https://img.shields.io/badge/License-Apache%202.0-blue.svg
9+
:target: https://github.com/InsightSoftwareConsortium/ITKVariationalRegistration/blob/master/LICENSE
10+
:alt: License
1811

1912

2013
Overview

appveyor.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)