CI Windows Shell Runner Hangs At End Of Stage
I'm trying to run the .gitlab-ci.yml file below, but the runner hangs at the end of the first stage without completing. It seems to complete if the python process is killed. I'm using gitlab-ci-multi-runner 1.5.0 in Gitlab community edition 8.11 ![Capture](/uploads/9528db91a9ee07d07fb0d9c0aa0ae221/Capture.PNG) ![Capture](/uploads/c41e4a77f5ac1ef8403e28768c2e82e6/Capture.PNG) ``` yaml #.gitlab-ci.yml stages: - setup - test start: stage: setup script: - "start python -m http.server" - "dir" test: stage: test script: - "dir" ```
issue