-
Notifications
You must be signed in to change notification settings - Fork 23
27 lines (23 loc) · 1.13 KB
/
build-test-package.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
name: Build, test, package
on: [push,pull_request]
jobs:
cxx-build-workflow:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected]
python-build-workflow-dev:
if: github.ref != 'refs/heads/master' && github.ref != 'refs/heads/main' && !startsWith(github.ref, 'refs/tags')
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected]
with:
python3-minor-versions: '["8","11"]'
manylinux-platforms: '["_2_28-x64","2014-x64"]'
test-notebooks: true
secrets:
pypi_password: ${{ secrets.pypi_password }}
python-build-workflow-main:
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected]
with:
python3-minor-versions: '["8","9","10","11"]'
manylinux-platforms: '["_2_28-x64","2014-x64"]'
test-notebooks: true
secrets:
pypi_password: ${{ secrets.pypi_password }}