From 8cdc5fea525b9abd3bcd114c3db38fc646e50bee Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 6 Jul 2021 19:18:47 +0200 Subject: [PATCH] upload Allure results into report folder (#74) --- .github/workflows/interop.yml | 4 ++++ .github/workflows/performance.yml | 4 ++++ .github/workflows/sanity.yml | 4 ++++ 3 files changed, 12 insertions(+) diff --git a/.github/workflows/interop.yml b/.github/workflows/interop.yml index 2bdc295de..e149daeb1 100644 --- a/.github/workflows/interop.yml +++ b/.github/workflows/interop.yml @@ -227,6 +227,10 @@ jobs: name: allure-report path: allure-report + # doing this to be able to aggregate multiple reports together later on + - name: copy results into report + run: cp -r allure-results allure-report/results + - name: copy new report run: | mkdir -p reports/interop/interop diff --git a/.github/workflows/performance.yml b/.github/workflows/performance.yml index a0fbc78cc..6b052f998 100644 --- a/.github/workflows/performance.yml +++ b/.github/workflows/performance.yml @@ -296,6 +296,10 @@ jobs: with: name: allure-report-${{ matrix.testbed }} path: allure-report + + # doing this to be able to aggregate multiple reports together later on + - name: copy results into report + run: cp -r allure-results allure-report/results - name: copy new report run: | diff --git a/.github/workflows/sanity.yml b/.github/workflows/sanity.yml index c6e883fce..0508e8ffb 100644 --- a/.github/workflows/sanity.yml +++ b/.github/workflows/sanity.yml @@ -305,6 +305,10 @@ jobs: with: name: allure-report-${{ matrix.testbed }} path: allure-report + + # doing this to be able to aggregate multiple reports together later on + - name: copy results into report + run: cp -r allure-results allure-report/results - name: copy new report if: ${{ (github.event.inputs.marker_expression || 'sanity') == 'sanity and not interop' }}