forked from FediBlock/data
39 lines
825 B
YAML
39 lines
825 B
YAML
|
# -*- fill-column: 1000 -*-
|
||
|
kind: pipeline
|
||
|
name: Validate JSON
|
||
|
|
||
|
volumes:
|
||
|
- name: debian-package-cache
|
||
|
host:
|
||
|
path: /var/cache/debian-package-cache
|
||
|
|
||
|
steps:
|
||
|
- name: jsonlint-php
|
||
|
image: debian:buster-slim
|
||
|
pull: always
|
||
|
environment:
|
||
|
DEBIAN_FRONTEND: noninteractive
|
||
|
LANG: C.utf8
|
||
|
commands:
|
||
|
- rm /etc/apt/apt.conf.d/docker-clean
|
||
|
- alias apt-get='rm -f /var/cache/apt/archives/lock && apt-get'
|
||
|
- apt-get update -q
|
||
|
- apt-get install -qq jsonlint
|
||
|
- jsonlint-php *.json
|
||
|
volumes:
|
||
|
- name: debian-package-cache
|
||
|
path: /var/cache/apt/archives
|
||
|
|
||
|
- name: notify
|
||
|
image: drillster/drone-email
|
||
|
pull: always
|
||
|
settings:
|
||
|
host: mail.tzend.de
|
||
|
from: drone@tzend.de
|
||
|
username:
|
||
|
from_secret: email_username
|
||
|
password:
|
||
|
from_secret: email_password
|
||
|
when:
|
||
|
status: [ changed, failure ]
|