From 1a5bb688a7dda429072b53b2f8f785f1d7936320 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Stolarczuk?= Date: Fri, 13 Dec 2024 14:41:08 +0100 Subject: [PATCH] [CI] Gather platform's info in all HW workflows --- .github/workflows/benchmarks-reusable.yml | 5 +++++ .github/workflows/e2e_core.yml | 5 +++++ 2 files changed, 10 insertions(+) diff --git a/.github/workflows/benchmarks-reusable.yml b/.github/workflows/benchmarks-reusable.yml index 46bdecb4ca..83c05f896c 100644 --- a/.github/workflows/benchmarks-reusable.yml +++ b/.github/workflows/benchmarks-reusable.yml @@ -236,3 +236,8 @@ jobs: with: path: ur-repo/benchmark_results.html key: benchmark-results-${{ matrix.adapter.str_name }}-${{ github.run_id }} + + - name: Get information about platform + if: ${{ always() }} + working-directory: ${{ github.workspace }}/ur-repo/ + run: .github/scripts/get_system_info.sh diff --git a/.github/workflows/e2e_core.yml b/.github/workflows/e2e_core.yml index f12913c648..c98ec21288 100644 --- a/.github/workflows/e2e_core.yml +++ b/.github/workflows/e2e_core.yml @@ -192,6 +192,11 @@ jobs: id: tests run: ninja -C build-e2e check-sycl-e2e || echo "e2e tests have failed. Ignoring failure." + - name: Get information about platform + if: ${{ always() }} + working-directory: ${{github.workspace}}/ur-repo + run: .github/scripts/get_system_info.sh + # FIXME: Requires pull-request: write permissions but this is only granted # on pull requests from forks if using pull_request_target workflow # trigger but not the pull_request trigger..