diff --git a/scripts/windows_agent_start.ps1 b/scripts/windows_agent_start.ps1 index 95de34c..6a754ec 100644 --- a/scripts/windows_agent_start.ps1 +++ b/scripts/windows_agent_start.ps1 @@ -18,9 +18,14 @@ $NAME="agent-windows-jenkins" $IMAGE="gcr.io/llvm-premerge-checks/${NAME}" +Write-Output "Pulling new image..." docker pull ${IMAGE} + +Write-Output "Stopping old container..." docker stop ${NAME} docker rm ${NAME} + +Write-Output "Starting container..." docker run ` -v D:\:C:\ws ` -v C:\credentials:C:\credentials `