From 8fe10fb008336c47c4c609c3e9354840357bd23f Mon Sep 17 00:00:00 2001 From: Bouncner Date: Tue, 19 Dec 2023 09:44:06 -0800 Subject: [PATCH] Fix for artifact issue. (#7) Attempt fix of new issue with artifacts. --- .github/workflows/haupt.yml | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/.github/workflows/haupt.yml b/.github/workflows/haupt.yml index e26fc20..d10d6ba 100644 --- a/.github/workflows/haupt.yml +++ b/.github/workflows/haupt.yml @@ -124,19 +124,19 @@ jobs: python3 runner.py --hyrise_server_path=../encoding_plugin/rel/ --execute=evaluation --configurations_dir "evaluation/${{ env.CALIBRATION_RUN }}/configurations__default/TPCH/LPCompressionSelection" --results_dir "evaluation/${{ env.CALIBRATION_RUN }}/results/TPCH/LPCompressionSelection" --scale_factor ${{ env.SCALE_FACTOR }} --single_benchmark=TPCH --port 5551 --cores=${{ env.CORE_COUNT }} --clients=${{ env.CLIENT_COUNT }} popd - - name: Upload benchmark results (default) + - name: Upload benchmark results (non-constrained) uses: actions/upload-artifact@master if: env.SKIP_HYRISE == 'false' with: - name: comparison_results_hyrise + name: comparison_results_hyrise_non-constrained path: | python/db_comparison_results/*.csv - - name: Upload benchmark results (default) + - name: Upload benchmark results (budget-constrained) uses: actions/upload-artifact@master if: env.SKIP_HYRISE == 'false' with: - name: comparison_results_hyrise + name: comparison_results_hyrise_budget-constrained path: | python/evaluation/${{ env.CALIBRATION_RUN }}/results/TPCH/*.csv python/evaluation/${{ env.CALIBRATION_RUN }}/results/TPCH/LPCompressionSelection/*.csv @@ -275,7 +275,12 @@ jobs: - uses: actions/download-artifact@master with: - name: comparison_results_hyrise + name: comparison_results_hyrise_non-constrained + path: results_to_plot + + - uses: actions/download-artifact@master + with: + name: comparison_results_hyrise_budget-constrained path: results_to_plot - name: Set environment variables