50 lines
1.0 KiB
YAML
50 lines
1.0 KiB
YAML
---
|
|
kind: pipeline
|
|
name: linters
|
|
steps:
|
|
- name: run shellcheck
|
|
image: koalaman/shellcheck-alpine:v0.7.1
|
|
commands:
|
|
- shellcheck abra
|
|
- shellcheck bin/*.sh
|
|
|
|
- name: run flake8
|
|
image: alpine/flake8:3.9.0
|
|
commands:
|
|
- flake8 --max-line-length 100 bin/app-json.py
|
|
|
|
- name: run unit tests
|
|
image: decentral1se/docker-dind-bats-kcov
|
|
commands:
|
|
- bats tests
|
|
|
|
- name: publish image
|
|
image: plugins/docker
|
|
settings:
|
|
auto_tag: true
|
|
username:
|
|
from_secret: docker_reg_username
|
|
password:
|
|
from_secret: docker_reg_passwd
|
|
repo: decentral1se/abra
|
|
tags: latest
|
|
depends_on:
|
|
- run shellcheck
|
|
- run flake8
|
|
- run unit tests
|
|
|
|
- name: notify rocket chat
|
|
image: plugins/slack
|
|
settings:
|
|
webhook:
|
|
from_secret: rc_builds_url
|
|
username: comradebritney
|
|
channel: "internal.builds"
|
|
template: "{{repo.owner}}/{{repo.name}} build failed: {{build.link}}"
|
|
when:
|
|
status:
|
|
- failure
|
|
trigger:
|
|
branch:
|
|
- main
|