This repository was archived by the owner on Feb 1, 2026. It is now read-only.
ccruntime e2e test nightly #757
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: ccruntime e2e test nightly | |
| on: | |
| schedule: | |
| - cron: '0 2 * * *' | |
| workflow_dispatch: | |
| jobs: | |
| e2e-nightly: | |
| uses: ./.github/workflows/ccruntime_e2e.yaml | |
| with: | |
| commit-hash: ${{ github.sha }} | |
| e2e-ibm-se-nightly: | |
| runs-on: s390x-large | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| test_title: | |
| - cc-operator-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 }} |