Merge pull request #5143 from thewtex/ci-testing-data-5.4.0 #638
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ITK.Pixi | |
on: | |
push: | |
branches: | |
- master | |
- 'release*' | |
paths-ignore: | |
- '*.md' | |
- LICENSE | |
- NOTICE | |
- 'Documentation/**' | |
- 'Utilities/Debugger/**' | |
- 'Utilities/ITKv5Preparation/**' | |
- 'Utilities/Maintenance/**' | |
pull_request: | |
paths-ignore: | |
- '*.md' | |
- LICENSE | |
- NOTICE | |
- 'Documentation/**' | |
- 'Utilities/Debugger/**' | |
- 'Utilities/ITKv5Preparation/**' | |
- 'Utilities/Maintenance/**' | |
concurrency: | |
group: '${{ github.workflow }}@${{ github.head_ref || github.ref }}' | |
cancel-in-progress: ${{ github.event_name == 'pull_request' }} | |
env: | |
ExternalDataVersion: 5.4.0 | |
jobs: | |
Pixi-Cxx: | |
runs-on: ${{ matrix.os }} | |
timeout-minutes: 0 | |
strategy: | |
matrix: | |
os: [ubuntu-22.04, windows-2022, macos-14] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 5 | |
clean: true | |
- name: Free Disk Space (Ubuntu) | |
if: matrix.os == 'ubuntu-22.04' | |
uses: jlumbroso/free-disk-space@main | |
- name: Download testing data | |
run: | | |
curl -L https://github.com/InsightSoftwareConsortium/ITK/releases/download/v${{ env.ExternalDataVersion }}/InsightData-${{ env.ExternalDataVersion }}.tar.gz -O | |
cmake -E tar xfz InsightData-${{ env.ExternalDataVersion }}.tar.gz | |
cmake -E rename InsightToolkit-${{ env.ExternalDataVersion }}/.ExternalData/CID ${{ github.workspace }}/.ExternalData/CID | |
- name: Set up Pixi | |
uses: prefix-dev/[email protected] | |
- name: Configure | |
run: pixi run configure | |
- name: Build | |
run: pixi run build | |
- name: Test | |
run: pixi run test |