Я не могу настроить .gitlab-ci.yml Можете ли вы помочь мне? Это мой конфиг:
before_script:
## clean the working directory
- BUILD_DIR="/C:/gitlab-runner/builds/"
- CLONE_DIR="$BUILD_DIR/$CI_PROJECT_PATH"
- cd $BUILD_DIR
- rm -rf $CLONE_DIR
- mkdir -p $CLONE_DIR
## clone the project each time (inefficient, consider performing fetch instead if it already exists)
- git clone http://gitlab-runner:aZsZGxSJZLPnxZysDDQp@server:8888/${CI_PROJECT_PATH}.git $CLONE_DIR
- cd $CLONE_DIR
tests:
tags:
- shell
- ci
script:
- mvn test
Я получаю эту ошибку введите описание изображения здесь