diff --git a/.azure-pipelines/templates/sglang-test.yml b/.azure-pipelines/templates/sglang-test.yml index 23a0a595..cf594139 100644 --- a/.azure-pipelines/templates/sglang-test.yml +++ b/.azure-pipelines/templates/sglang-test.yml @@ -27,7 +27,6 @@ steps: displayName: Install mscclpp runRemoteArgs: '--container sglang-mscclpp-test' remoteScript: | - rm -rf mscclpp git clone https://github.com/microsoft/mscclpp.git cd mscclpp mkdir build diff --git a/test/deploy/deploy.sh b/test/deploy/deploy.sh index dff9fa62..21220643 100644 --- a/test/deploy/deploy.sh +++ b/test/deploy/deploy.sh @@ -99,13 +99,13 @@ if [ "${CONTAINER_NAME}" == "sglang-mscclpp-test" ]; then # InfiniBand: use --privileged for RDMA device access parallel-ssh -i -t 0 -h ${HOSTFILE} -x "-i ${KeyFilePath}" -O $SSH_OPTION \ "sudo docker run --rm -itd --privileged --net=host --ipc=host ${LAUNCH_OPTION} \ - -w /root -v ${DST_DIR}:/root/mscclpp -v /opt/microsoft:/opt/microsoft --ulimit memlock=-1:-1 --name=sglang-mscclpp-test \ + -w /root -v /opt/microsoft:/opt/microsoft --ulimit memlock=-1:-1 --name=sglang-mscclpp-test \ --entrypoint /bin/bash lmsysorg/sglang:latest" else # Non-IB: grant SYS_ADMIN and disable seccomp instead of full --privileged parallel-ssh -i -t 0 -h ${HOSTFILE} -x "-i ${KeyFilePath}" -O $SSH_OPTION \ "sudo docker run --rm -itd --net=host --ipc=host ${LAUNCH_OPTION} --cap-add=SYS_ADMIN --security-opt seccomp=unconfined \ - -w /root -v ${DST_DIR}:/root/mscclpp -v /opt/microsoft:/opt/microsoft --ulimit memlock=-1:-1 --name=sglang-mscclpp-test \ + -w /root -v /opt/microsoft:/opt/microsoft --ulimit memlock=-1:-1 --name=sglang-mscclpp-test \ --entrypoint /bin/bash lmsysorg/sglang:latest" fi else