mirror of
https://github.com/aljazceru/kata-containers.git
synced 2026-01-26 01:34:23 +01:00
This PR removes an unrecognized value located in one of the yamls for the gha in order to make it work the CI again. Fixes #7149 Signed-off-by: Gabriela Cervantes <gabriela.cervantes.tellez@intel.com>
33 lines
840 B
YAML
33 lines
840 B
YAML
name: CI | Run test metrics
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
tarball-suffix:
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
run-metrics:
|
|
runs-on: metrics
|
|
env:
|
|
GOPATH: ${{ github.workspace }}
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
ref: ${{ github.event.pull_request.head.sha }}
|
|
|
|
- name: get-kata-tarball
|
|
uses: actions/download-artifact@v3
|
|
with:
|
|
name: kata-static-tarball-amd64${{ inputs.tarball-suffix }}
|
|
path: kata-artifacts
|
|
|
|
- name: Install kata
|
|
run: bash tests/metrics/gha-run.sh install-kata kata-artifacts
|
|
|
|
- name: run launch times on qemu
|
|
run: bash tests/metrics/gha-run.sh run-test-launchtimes-qemu
|
|
|
|
- name: run launch times on clh
|
|
run: bash tests/metrics/gha-run.sh run-test-launchtimes-clh
|