Stucked running state CI

Hi guys!

So, i have a problem with CI. As you can see my pipeline stucked in running state: https://i.imgur.com/PmbgdWo.png
Here is my gitlab-ci:
stages:
- build
- test1
- test2
- deploy

build:
  stage: build
  image: alpine
  script:
    - echo "BUILD STAGE"
  when: manual

test1:
  image: alpine
  stage: test1
  needs: [build]
  script:
    - echo "test1"

test2:
  image: alpine
  stage: test2
  needs: [build]
  script:
    - echo "test2"

Catalog-s3-sync:
  stage: build
  image: napp/docker-aws-cli
  needs: []
  script:
    - echo "s3-sync"
  only:
    - master

deploy:
  stage: deploy
  image: alpine
  needs: [build]
  script:
    - echo "deploy"

First of all i have a job what running automatically from master and other jobs waiting for to start. Where is the problem? How can i solve this running state stucked problem?

Thank you very much any feedback!