30 lines
494 B
YAML
30 lines
494 B
YAML
build-vue:
|
|
image: docker:latest
|
|
stage: build
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- cd frontend
|
|
- docker build --pull -t vue .
|
|
rules:
|
|
- if: $CI_MERGE_REQUEST_ID
|
|
|
|
build-backend:
|
|
image: docker:latest
|
|
stage: build
|
|
services:
|
|
- docker:dind
|
|
script:
|
|
- cd backend
|
|
- docker build --pull -t backend .
|
|
rules:
|
|
- if: $CI_MERGE_REQUEST_ID
|
|
|
|
build-android:
|
|
image: debian
|
|
stage: build
|
|
script:
|
|
- echo "To be done"
|
|
rules:
|
|
- if: $CI_MERGE_REQUEST_ID
|