More debugging
continuous-integration/drone/push Build is failing Details

This commit is contained in:
IamTheFij 2021-01-08 17:53:19 -05:00
parent d810bcb61c
commit 5bb4da6178
1 changed files with 33 additions and 27 deletions

View File

@ -4,29 +4,20 @@ name: test
steps:
- name: test
image: golang:1.12
environment:
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
- name: skip
image: busybox
commands:
- make build
- make test
- echo ok
- name: check
image: iamthefij/drone-pre-commit:personal
- name: notify
image: drillster/drone-email
settings:
host:
from_secret: SMTP_HOST
username:
from_secret: SMTP_USER
password:
from_secret: SMTP_PASS
from: drone@iamthefij.com
when:
status: [changed, failure]
# - name: test
# image: golang:1.12
# environment:
# VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
# commands:
# - make test
#
# - name: check
# image: iamthefij/drone-pre-commit:personal
---
kind: pipeline
@ -49,11 +40,14 @@ steps:
environment:
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
commands:
- make all
# - make all
- make dist/minitor-linux-amd64
- name: compress binaries for release
image: busybox
commands:
- pwd
- ls
- ./compress_release.sh
- name: upload gitea pre-release
@ -141,15 +135,27 @@ steps:
password:
from_secret: docker_password
---
kind: pipeline
name: notify
depends_on:
- test
- publish
trigger:
status:
- failure
steps:
- name: notify
image: drillster/drone-email
settings:
host:
from_secret: SMTP_HOST
from_secret: SMTP_HOST # pragma: whitelist secret
username:
from_secret: SMTP_USER
from_secret: SMTP_USER # pragma: whitelist secret
password:
from_secret: SMTP_PASS
from_secret: SMTP_PASS # pragma: whitelist secret
from: drone@iamthefij.com
when:
status: [changed, failure]