All checks were successful
continuous-integration/drone/push Build is passing
53 lines
1.6 KiB
YAML
53 lines
1.6 KiB
YAML
---
|
|
kind: pipeline
|
|
type: docker
|
|
name: testing
|
|
|
|
steps:
|
|
- name: build
|
|
image: docker:dind
|
|
environment:
|
|
BASE_PATH: /${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_COMMIT_BRANCH}/
|
|
COMPOSE_PROJECT_NAME: ${DRONE_REPO_OWNER,,}-${DRONE_REPO_NAME,,}-${DRONE_COMMIT_BRANCH//\//-}
|
|
SERVICE_3000_CHECK_HTTP: /${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_COMMIT_BRANCH}/
|
|
SERVICE_3000_TAGS: urlprefix-testing.asycn.io/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_COMMIT_BRANCH}/*
|
|
commands:
|
|
- docker compose -f docker/docker-compose.yml build --build-arg BASE_PATH="/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/${DRONE_COMMIT_BRANCH}"
|
|
- docker compose -f docker/docker-compose.yml -f docker/docker-compose.labels.yml up -d
|
|
volumes:
|
|
- name: dockersock
|
|
path: /var/run/docker.sock
|
|
|
|
- name: notify
|
|
image: appleboy/drone-telegram
|
|
when:
|
|
status:
|
|
- success
|
|
- failure
|
|
settings:
|
|
token:
|
|
from_secret: telegram_token
|
|
to:
|
|
from_secret: telegram_chat_id_ajr
|
|
format: markdown
|
|
message: >
|
|
{{#success build.status}}
|
|
✅ `{{commit.email}}` a mis à jour la branche `{{commit.branch}}` sur le repo `{{repo.name}}`:
|
|
```
|
|
{{commit.message}}
|
|
```
|
|
🌐 https://testing.asycn.io/${DRONE_REPO_OWNER}/${DRONE_REPO_NAME}/{{commit.branch}}/
|
|
{{else}}
|
|
❌ Le build #{{build.number}} du repo `{{repo.name}}` est un gros fail...
|
|
📝 Commit de {{commit.email}} sur la branche `{{commit.branch}}`:
|
|
```
|
|
{{commit.message}}
|
|
```
|
|
🌐 {{ build.link }}
|
|
{{/success}}
|
|
|
|
volumes:
|
|
- name: dockersock
|
|
host:
|
|
path: /var/run/docker.sock
|