From b1d40014a6326d7466f97b9d3ad880dff0ecfb95 Mon Sep 17 00:00:00 2001 From: Trung Nguyen Date: Fri, 23 Aug 2024 14:00:13 -0500 Subject: [PATCH] allow to download artifact from the regression test --- .github/workflows/quick-regression.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/quick-regression.yml b/.github/workflows/quick-regression.yml index 7ba4e8465b..3aed9384c9 100644 --- a/.github/workflows/quick-regression.yml +++ b/.github/workflows/quick-regression.yml @@ -71,6 +71,7 @@ jobs: ccache -s - name: Run Selected Regression Tests + uses: actions/download-artifact@v4 shell: bash run: | source linuxenv/bin/activate @@ -79,3 +80,8 @@ jobs: --lmp-bin=build/lmp \ --config-file=tools/regression-tests/config.yaml \ --list-input=folder_list.txt + tar -cvf quick-regression-test.tar run.log progress.yaml + with: + name: quick-regression-test-artifact + path: quick-regression-test.tar +