This commit is contained in:
@@ -0,0 +1,64 @@
|
||||
name: Show CI Logs
|
||||
|
||||
on:
|
||||
workflow_run:
|
||||
workflows: ["Run CI Tests"]
|
||||
types:
|
||||
- completed
|
||||
|
||||
jobs:
|
||||
show:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
run: |
|
||||
chmod +x temp-ci/give_runs_log.sh
|
||||
./temp-ci/give_runs_log.sh "outputs/checkout.log"
|
||||
|
||||
- name: Sudo install
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/sudo-install.log"
|
||||
|
||||
- name: Sudo versions
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/sudo-versions.log"
|
||||
|
||||
- name: Env download
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/env-setup.log"
|
||||
|
||||
- name: Env versions
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/env-versions.log"
|
||||
|
||||
- name: Add of CI pytest tools
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/ci-tooling.log"
|
||||
|
||||
- name: Run command shell before tests
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/custom-shell-before.log"
|
||||
|
||||
- name: Run tests and generate reports
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/test-ci.log"
|
||||
|
||||
- name: Capture Test Prints
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/test-prints.log"
|
||||
|
||||
- name: Run command shell after tests
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/custom-shell-after.log"
|
||||
|
||||
- name: Prepare the push to wiki
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/wiki-clone.log"
|
||||
|
||||
- name: Commit to wiki
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/commit-push-wiki.log"
|
||||
|
||||
- name: Wiki report URLs
|
||||
run: |
|
||||
./temp-ci/give_runs_log.sh "outputs/wiki-report-urls.log"
|
||||
Reference in New Issue
Block a user