git.delta.rocks / unique-network / refs/commits / 81331e51fe4c

difftreelog

Update try-runtime_v2.yml

Alex2022-10-19parent: #151b57c.patch.diff
in: master

1 file changed

modified.github/workflows/try-runtime_v2.ymldiffbeforeafterboth
1# Try-runtime checks
2# https://cryptousetech.atlassian.net/browse/CI-38
3
4# Triger: only call from main workflow(re-usable workflows)
1on:5on:
2 workflow_call:6 workflow_call:
37
67 if: always() # run this step always71 if: always() # run this step always
68 run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" down72 run: docker-compose -f ".docker/docker-compose-try-runtime.yml" -f ".docker/docker-compose.try-runtime.${{ matrix.network }}.yml" down
73
74 - name: Remove builder cache
75 if: always() # run this step always
76 run: |
77 docker builder prune -f -a
78 docker system prune -f
79 docker image prune -f -a
6980