Answer the question
In order to leave comments, you need to log in
Why does the simplest task in GitLab get stuck?
We are just starting to set up pipelines in gitlab. Made a simple .gitlab-ci.yml with stubs for scheduled tasks -
stages:
- building
- deployment
build:
stage: building
script:
- echo "Build FINISHED!"
deploy to test1:
stage: deployment
dependencies:
- build
script:
- echo "Deploy to test1 FINISHED!"
when: manual
environment:
name: test1
url: http://test1.ru/
deploy to test2:
stage: deployment
dependencies:
- build
script:
- echo "Deploy to test2 FINISHED!"
when: manual
environment:
name: test2
url: http://test2.ru/
Answer the question
In order to leave comments, you need to log in
It turned out that everything is OK with the file. Our admin stopped the runner. When he started it again, everything worked.
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question