mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-13 11:49:44 +00:00
This fixes that error everywhere by adding a `name:` field to all jobs that were missing it. We keep the same name as the job ID to ensure no disturbance to the required job names. Signed-off-by: Aurélien Bombo <abombo@microsoft.com>
28 lines
647 B
YAML
28 lines
647 B
YAML
on:
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
|
|
name: Nightly CI for s390x
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
check-internal-test-result:
|
|
name: check-internal-test-result
|
|
runs-on: s390x
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
test_title:
|
|
- kata-vfio-ap-e2e-tests
|
|
- cc-vfio-ap-e2e-tests
|
|
- cc-se-e2e-tests-go
|
|
- cc-se-e2e-tests-rs
|
|
steps:
|
|
- name: Fetch a test result for {{ matrix.test_title }}
|
|
run: |
|
|
file_name="${TEST_TITLE}-$(date +%Y-%m-%d).log"
|
|
"/home/${USER}/script/handle_test_log.sh" download "$file_name"
|
|
env:
|
|
TEST_TITLE: ${{ matrix.test_title }}
|