diff --git a/.github/workflows/offline_inference.yml b/.github/workflows/offline_inference.yml index 91a5d46a..63dc98af 100644 --- a/.github/workflows/offline_inference.yml +++ b/.github/workflows/offline_inference.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - name: Run offline inference example run: | - nvidia-docker run --rm -t --net host --ipc host \ + nvidia-docker run --rm -t --ipc host \ -v ${PWD}:/workspace \ -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 2bd3f152..82d5b96f 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -25,7 +25,7 @@ jobs: - uses: actions/checkout@v4 - name: Analysing the code with pylint run: | - nvidia-docker run --rm -t --net host --ipc host \ + nvidia-docker run --rm -t --ipc host \ -v ${PWD}:/workspace \ -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ diff --git a/tools/bench_test.sh b/tools/bench_test.sh index ec12cef9..e4b388b5 100755 --- a/tools/bench_test.sh +++ b/tools/bench_test.sh @@ -1,6 +1,6 @@ #!/bin/bash set -ex -nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ +nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ bash -c "pip install -e . > /dev/null && make bench_test" diff --git a/tools/e2e_test.sh b/tools/e2e_test.sh index 867a8aaf..b18a733b 100755 --- a/tools/e2e_test.sh +++ b/tools/e2e_test.sh @@ -1,6 +1,6 @@ # #!/bin/bash set -ex -nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ +nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ bash -c "pip install -e . > /dev/null && make e2e_test" diff --git a/tools/migration_test.sh b/tools/migration_test.sh index 3e13ce55..5597b659 100755 --- a/tools/migration_test.sh +++ b/tools/migration_test.sh @@ -1,6 +1,6 @@ # #!/bin/bash set -ex -nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ +nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ bash -c "pip install -e . > /dev/null && make migration_test" diff --git a/tools/unit_test.sh b/tools/unit_test.sh index 0b075df3..4ec9441e 100755 --- a/tools/unit_test.sh +++ b/tools/unit_test.sh @@ -1,6 +1,6 @@ # #!/bin/bash set -ex -nvidia-docker run --rm -t --net host --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ +nvidia-docker run --rm -t --ipc host -v ${PWD}:/workspace -v /mnt:/mnt -w /workspace \ registry.cn-beijing.aliyuncs.com/llumnix/llumnix-dev:20240909_action_678a439 \ bash -c "pip install -e . > /dev/null && make unit_test"