Skip to content

Adds the component_metadata.yaml to track KFP releases across DSP ones #1025

Adds the component_metadata.yaml to track KFP releases across DSP ones

Adds the component_metadata.yaml to track KFP releases across DSP ones #1025

name: KinD DSPO/DSP Integration Tests
on:
workflow_dispatch:
pull_request:
paths:
- go.mod
- go.sum
- controllers/**
- api/**
- config/**
- tests/**
- .github/resources/**
- '.github/workflows/kind-integration.yml'
- '.github/scripts/tests/tests.sh'
- Makefile
types:
- opened
- reopened
- closed
- synchronize
concurrency:
group: ${{ github.head_ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
GIT_WORKSPACE: ${{ github.workspace }}
jobs:
dspo-tests:
runs-on: ubuntu-20.04
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v1
with:
go-version: '1.21.x'
id: go
- name: Setup and start KinD cluster
uses: ./.github/actions/kind
- name: Run test
id: test
working-directory: ${{ github.workspace }}/.github/scripts/tests
run: |
sh tests.sh --kind
continue-on-error: true
- name: Collect events and logs
if: steps.test.outcome != 'success'
working-directory: ${{ github.workspace }}/.github/scripts/tests
run: |
./collect_logs.sh --dspa-ns test-dspa --dspo-ns opendatahub
exit 1