Skip to content

Commit

Permalink
add clean up step to action
Browse files Browse the repository at this point in the history
  • Loading branch information
andrej committed Nov 5, 2024
1 parent abdea14 commit 8e73b48
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,9 @@ jobs:
path: 'LLVM-MCA-Daemon'
- name: setup and build inside Docker
run: cd LLVM-MCA-Daemon/docker && ./up
with:
post: docker image rm mcad_dev # remove image after we're done to conserve space
- name: clean up - delete docker image
if: always() # this line is needed to make this action run even if the previous step fails
run: docker image rm mcad_dev # remove image after we're done to conserve space
#- name: install dependencies
# run: sudo ./docker/setup-deps.sh
#- name: build LLVM
Expand Down

0 comments on commit 8e73b48

Please sign in to comment.