Skip to content

Commit

Permalink
ENH: Build Linux ARM Python packages in CI
Browse files Browse the repository at this point in the history
And prevent duplicate push/pull_request builds.
  • Loading branch information
thewtex authored Aug 13, 2024
1 parent 0fa1de7 commit 0fbfd61
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/build-test-package.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
name: Build, test, package

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

jobs:
cxx-build-workflow:
Expand All @@ -11,7 +19,7 @@ jobs:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected]
with:
python3-minor-versions: '["8","11"]'
manylinux-platforms: '["_2_28-x64","2014-x64"]'
manylinux-platforms: '["_2_28-x64","2014-x64","_2_28-aarch64"]'
test-notebooks: true
secrets:
pypi_password: ${{ secrets.pypi_password }}
Expand All @@ -21,7 +29,7 @@ jobs:
uses: InsightSoftwareConsortium/ITKRemoteModuleBuildTestPackageAction/.github/workflows/[email protected]
with:
python3-minor-versions: '["8","9","10","11"]'
manylinux-platforms: '["_2_28-x64","2014-x64"]'
manylinux-platforms: '["_2_28-x64","2014-x64","_2_28-aarch64"]'
test-notebooks: true
secrets:
pypi_password: ${{ secrets.pypi_password }}

0 comments on commit 0fbfd61

Please sign in to comment.