mirror of
https://github.com/kata-containers/kata-containers.git
synced 2025-04-27 11:31:05 +00:00
> Double quote to prevent globbing and word splitting. Signed-off-by: stevenhorsman <steven@uk.ibm.com>
22 lines
525 B
YAML
22 lines
525 B
YAML
on:
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
|
|
name: Nightly CI for s390x
|
|
jobs:
|
|
check-internal-test-result:
|
|
runs-on: s390x
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
test_title:
|
|
- kata-vfio-ap-e2e-tests
|
|
- cc-se-e2e-tests
|
|
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 }}
|