Skip to content

ci: acts ci workflows and auth precondition implementation (#1157) #621

ci: acts ci workflows and auth precondition implementation (#1157)

ci: acts ci workflows and auth precondition implementation (#1157) #621

Workflow file for this run

name: ITK
on:
push:
branches: [main]
paths-ignore:
- '**/docs/**'
pull_request:
paths-ignore:
- '**/docs/**'
permissions:
contents: read
jobs:
itk:
name: ITK
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v7
- name: Set up JDK 17
uses: actions/setup-java@v6
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Clone a2a-itk
uses: actions/checkout@v7
with:
repository: a2aproject/a2a-itk
ref: main
path: itk/a2a-itk
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Build itk_service image (GHA layer cache)
uses: docker/build-push-action@v7
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@v6
with:
path: ~/.cache/a2a-itk-launcher
key: itk-launcher-${{ runner.os }}-${{ github.sha }}
restore-keys: |
itk-launcher-${{ runner.os }}-
- name: Run ITK Tests
run: bash run_itk.sh
working-directory: itk
env:
A2A_ITK_REVISION: main
ITK_SKIP_BUILD: "1"