Nightly ITK #116
This file contains hidden or 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: Nightly ITK | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' # 2:00 AM UTC daily | |
| workflow_dispatch: # Allow manual execution | |
| permissions: | |
| contents: write | |
| jobs: | |
| nightly: | |
| name: Nightly ITK Run | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| - name: Install uv | |
| uses: astral-sh/setup-uv@v7 | |
| - name: Clone a2a-itk | |
| uses: actions/checkout@v6 | |
| with: | |
| repository: a2aproject/a2a-itk | |
| ref: main | |
| path: itk/a2a-itk | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Build itk_service image (GHA layer cache) | |
| uses: docker/build-push-action@v6 | |
| with: | |
| context: itk/a2a-itk | |
| tags: itk_service:latest | |
| load: true | |
| cache-from: type=gha,scope=itk_service | |
| cache-to: type=gha,mode=max,scope=itk_service | |
| - name: Cache launcher peer-SDK checkouts + build outputs | |
| uses: actions/cache@v4 | |
| with: | |
| path: ~/.cache/a2a-itk-launcher | |
| key: itk-launcher-${{ runner.os }}-${{ github.sha }} | |
| restore-keys: | | |
| itk-launcher-${{ runner.os }}- | |
| - name: Run Nightly ITK Tests | |
| run: bash run_itk.sh | |
| working-directory: itk | |
| env: | |
| A2A_ITK_REVISION: main | |
| ITK_NIGHTLY_RUN: "True" | |
| ITK_SKIP_BUILD: "1" | |
| - name: Upload Results to Rolling Release | |
| uses: softprops/action-gh-release@v3 | |
| with: | |
| tag_name: "nightly-metrics" | |
| prerelease: true | |
| files: | | |
| itk/itk_python.json | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |