Skip to content

Commit

Permalink
add bundle artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
DanielHabenicht committed Sep 20, 2021
1 parent 900efd7 commit c9954b5
Showing 1 changed file with 25 additions and 7 deletions.
32 changes: 25 additions & 7 deletions .github/workflows/evaluation.yml
Expand Up @@ -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/

0 comments on commit c9954b5

Please sign in to comment.