From c9954b5771223122b4bed9ad7ac686cd1af4ea3c Mon Sep 17 00:00:00 2001 From: Daniel Habenicht Date: Mon, 20 Sep 2021 18:50:38 +0200 Subject: [PATCH] add bundle artifacts --- .github/workflows/evaluation.yml | 32 +++++++++++++++++++++++++------- 1 file changed, 25 insertions(+), 7 deletions(-) diff --git a/.github/workflows/evaluation.yml b/.github/workflows/evaluation.yml index 1316b3d..efc9f6b 100644 --- a/.github/workflows/evaluation.yml +++ b/.github/workflows/evaluation.yml @@ -85,20 +85,38 @@ jobs: - uses: actions/upload-artifact@master if: always() with: - name: output + name: output-${{ matrix.scenario }}-${{ matrix.latency }}-${{ matrix.node_count}} path: /tmp/ipynb - uses: actions/upload-artifact@master if: always() with: - name: data + name: data-${{ matrix.scenario }}-${{ matrix.latency }}-${{ matrix.node_count}} path: ./evaluation/data/ - # - uses: actions/upload-artifact@master - # if: always() - # with: - # name: out - # path: ./evaluation/out/ - name: Terraform Destroy if: always() run: terraform destroy -auto-approve + bundle: + name: 'Bundle' + runs-on: ubuntu-latest + needs: [terraform] + timeout-minutes: 240 + defaults: + run: + shell: bash + + steps: + - uses: actions/download-artifact@v2 + with: + path: ./artifacts + - uses: actions/upload-artifact@master + if: always() + with: + name: bundle + path: ./artifacts + # - uses: actions/upload-artifact@master + # if: always() + # with: + # name: out + # path: ./evaluation/out/ \ No newline at end of file