From d73e8c32a2ecd739a4ecc777fb69ceb01b9622c5 Mon Sep 17 00:00:00 2001 From: Ved Patwardhan <54766411+vedpatwardhan@users.noreply.github.com> Date: Tue, 26 Dec 2023 11:10:04 +0530 Subject: [PATCH] fix: added --rm to docker run to delete the container after exiting to avoid space issues on the instance --- .github/workflows/_demo-test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/_demo-test.yml b/.github/workflows/_demo-test.yml index 93425b43..a05deb81 100644 --- a/.github/workflows/_demo-test.yml +++ b/.github/workflows/_demo-test.yml @@ -41,4 +41,4 @@ jobs: - name: Run Integration Tests for Enterprise Demos run: | - docker run --gpus all -v "$(pwd)"/demos:/ivy/demos -v "$(pwd)"/ivy:/ivy/ivy unifyai/ivy:latest-gpu demos/tests/test_demos.sh ${{ secrets.USER_API_KEY }} examples_and_demos/${{ matrix.modules }}.ipynb ${{ inputs.nightly_binaries }} + docker run --rm --gpus all -v "$(pwd)"/demos:/ivy/demos -v "$(pwd)"/ivy:/ivy/ivy unifyai/ivy:latest-gpu demos/tests/test_demos.sh ${{ secrets.USER_API_KEY }} examples_and_demos/${{ matrix.modules }}.ipynb ${{ inputs.nightly_binaries }}