i
Size: a a a
D
AG
BS
image: alpine
stages:
- build
.login:
before_script:
- echo B
.build:
stage: build
allow_failure: true
services:
- docker:dind
extends: .login
after_script:
- echo A
app:
extends: .build
script:
- echo S
BS
BS
image: alpine
stages:
- build
build:
stage: build
services:
- docker:dind
before_script:
- echo B
script:
- echo S
after_script:
- echo A
BS
BS
image: alpine
stages:
- build
build:
stage: build
services:
- docker:dind
before_script:
- echo B
script:
- echo S
after_script:
- echo A
IG
BS