DV
Size: a a a
DV
AG
DV
AG
AG
AG
AG
AG
AG
DV
AG
AG
Д
Д
stages:
- test
- build
- push
- deploy
test:
stage: test
script: ls la
when: manual
test1:
stage: test
script: ls -la
when: manual
build:
stage: build
script: ls -la
needs: ["test"]
build1:
stage: build
script: ls -la
needs: ["test1"]
push:
stage: push
script: ls -la
needs: ["build"]
push1:
stage: push
script: ls -la
needs: ["build1"]
deploy:
stage: deploy
script: ls -la
needs: ["push"]
deploy1:
stage: deploy
script: ls -la
needs: ["push1"]
AG
stages:
- test
- build
- push
- deploy
test:
stage: test
script: ls la
when: manual
test1:
stage: test
script: ls -la
when: manual
build:
stage: build
script: ls -la
needs: ["test"]
build1:
stage: build
script: ls -la
needs: ["test1"]
push:
stage: push
script: ls -la
needs: ["build"]
push1:
stage: push
script: ls -la
needs: ["build1"]
deploy:
stage: deploy
script: ls -la
needs: ["push"]
deploy1:
stage: deploy
script: ls -la
needs: ["push1"]
AG