mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-07-14 22:06:46 +00:00
Set: ``` permissions: contents: read ``` as the default top-level permissions explicitly to conform to recommended security practices e.g. https://github.com/ossf/scorecard/blob/main/docs/checks.md#token-permissions
27 lines
590 B
YAML
27 lines
590 B
YAML
on:
|
|
schedule:
|
|
- cron: '0 5 * * *'
|
|
|
|
name: Nightly CI for s390x
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
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
|
|
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 }}
|