Compare commits
3 Commits
master
...
drone-ites
Author | SHA1 | Date | |
---|---|---|---|
36813d0c27 | |||
164521d745 | |||
c24bdad381 |
232
.drone.yml
232
.drone.yml
@ -3,121 +3,133 @@ kind: pipeline
|
|||||||
name: test
|
name: test
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: test
|
# - name: test
|
||||||
image: golang:1.15
|
# image: golang:1.15
|
||||||
commands:
|
|
||||||
- make test
|
|
||||||
|
|
||||||
- name: check
|
|
||||||
image: python:3
|
|
||||||
commands:
|
|
||||||
- pip install docker-compose pre-commit
|
|
||||||
- wget -L -O /usr/bin/hadolint https://github.com/hadolint/hadolint/releases/download/v1.18.0/hadolint-Linux-x86_64
|
|
||||||
- chmod +x /usr/bin/hadolint
|
|
||||||
- make check
|
|
||||||
|
|
||||||
# - name: itest
|
|
||||||
# image: docker/compose:alpine-1.26.2
|
|
||||||
# environment:
|
|
||||||
# VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
|
||||||
# commands:
|
# commands:
|
||||||
# - apk add make bash
|
# - make test
|
||||||
# - make itest
|
|
||||||
|
|
||||||
---
|
# - name: check
|
||||||
kind: pipeline
|
# image: python:3
|
||||||
name: publish
|
# commands:
|
||||||
|
# - pip install docker-compose pre-commit
|
||||||
|
# - wget -L -O /usr/bin/hadolint https://github.com/hadolint/hadolint/releases/download/v1.18.0/hadolint-Linux-x86_64
|
||||||
|
# - chmod +x /usr/bin/hadolint
|
||||||
|
# - make check
|
||||||
|
|
||||||
depends_on:
|
- name: itest
|
||||||
- test
|
image: docker/compose
|
||||||
|
volumes:
|
||||||
trigger:
|
- name: dockersock
|
||||||
event:
|
path: /var/run/docker.sock
|
||||||
- push
|
|
||||||
- tag
|
|
||||||
refs:
|
|
||||||
- refs/heads/master
|
|
||||||
- refs/tags/v*
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: build
|
|
||||||
image: golang:1.15
|
|
||||||
environment:
|
environment:
|
||||||
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
||||||
commands:
|
commands:
|
||||||
- make build-linux-static
|
- apk add make bash
|
||||||
|
- make itest
|
||||||
|
|
||||||
- name: push image - arm
|
volumes:
|
||||||
image: plugins/docker
|
- name: dockersock
|
||||||
settings:
|
|
||||||
repo: iamthefij/dockron
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
build_args:
|
|
||||||
- ARCH=arm
|
|
||||||
- REPO=arm32v7
|
|
||||||
|
|
||||||
- name: push image - arm64
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
repo: iamthefij/dockron
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-arm64
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
build_args:
|
|
||||||
- ARCH=arm64
|
|
||||||
- REPO=arm64v8
|
|
||||||
|
|
||||||
- name: push image - amd64
|
|
||||||
image: plugins/docker
|
|
||||||
settings:
|
|
||||||
repo: iamthefij/dockron
|
|
||||||
auto_tag: true
|
|
||||||
auto_tag_suffix: linux-amd64
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
password:
|
|
||||||
from_secret: docker_password
|
|
||||||
|
|
||||||
- name: publish manifest
|
|
||||||
image: plugins/manifest
|
|
||||||
settings:
|
|
||||||
spec: manifest.tmpl
|
|
||||||
auto_tag: true
|
|
||||||
ignore_missing: true
|
|
||||||
username:
|
|
||||||
from_secret: docker_username
|
|
||||||
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:
|
host:
|
||||||
from_secret: SMTP_HOST # pragma: whitelist secret
|
path: /var/run/docker.sock
|
||||||
username:
|
# ---
|
||||||
from_secret: SMTP_USER # pragma: whitelist secret
|
# kind: pipeline
|
||||||
password:
|
# name: publish
|
||||||
from_secret: SMTP_PASS # pragma: whitelist secret
|
#
|
||||||
from: drone@iamthefij.com
|
# depends_on:
|
||||||
|
# - test
|
||||||
|
#
|
||||||
|
# trigger:
|
||||||
|
# event:
|
||||||
|
# - push
|
||||||
|
# - tag
|
||||||
|
# refs:
|
||||||
|
# - refs/heads/master
|
||||||
|
# - refs/tags/v*
|
||||||
|
#
|
||||||
|
# steps:
|
||||||
|
# - name: build
|
||||||
|
# image: golang:1.15
|
||||||
|
# environment:
|
||||||
|
# VERSION: ${DRONE_TAG:-${DRONE_COMMIT}}
|
||||||
|
# commands:
|
||||||
|
# - make build-linux-static
|
||||||
|
#
|
||||||
|
# - name: push image - arm
|
||||||
|
# image: plugins/docker
|
||||||
|
# settings:
|
||||||
|
# repo: iamthefij/dockron
|
||||||
|
# auto_tag: true
|
||||||
|
# auto_tag_suffix: linux-arm
|
||||||
|
# username:
|
||||||
|
# from_secret: docker_username
|
||||||
|
# password:
|
||||||
|
# from_secret: docker_password
|
||||||
|
# build_args:
|
||||||
|
# - ARCH=arm
|
||||||
|
# - REPO=arm32v7
|
||||||
|
#
|
||||||
|
# - name: push image - arm64
|
||||||
|
# image: plugins/docker
|
||||||
|
# settings:
|
||||||
|
# repo: iamthefij/dockron
|
||||||
|
# auto_tag: true
|
||||||
|
# auto_tag_suffix: linux-arm64
|
||||||
|
# username:
|
||||||
|
# from_secret: docker_username
|
||||||
|
# password:
|
||||||
|
# from_secret: docker_password
|
||||||
|
# build_args:
|
||||||
|
# - ARCH=arm64
|
||||||
|
# - REPO=arm64v8
|
||||||
|
#
|
||||||
|
# - name: push image - amd64
|
||||||
|
# image: plugins/docker
|
||||||
|
# settings:
|
||||||
|
# repo: iamthefij/dockron
|
||||||
|
# auto_tag: true
|
||||||
|
# auto_tag_suffix: linux-amd64
|
||||||
|
# username:
|
||||||
|
# from_secret: docker_username
|
||||||
|
# password:
|
||||||
|
# from_secret: docker_password
|
||||||
|
#
|
||||||
|
# - name: publish manifest
|
||||||
|
# image: plugins/manifest
|
||||||
|
# settings:
|
||||||
|
# spec: manifest.tmpl
|
||||||
|
# auto_tag: true
|
||||||
|
# ignore_missing: true
|
||||||
|
# username:
|
||||||
|
# from_secret: docker_username
|
||||||
|
# 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 # pragma: whitelist secret
|
||||||
|
# username:
|
||||||
|
# from_secret: SMTP_USER # pragma: whitelist secret
|
||||||
|
# password:
|
||||||
|
# from_secret: SMTP_PASS # pragma: whitelist secret
|
||||||
|
# from: drone@iamthefij.com
|
||||||
|
---
|
||||||
|
kind: signature
|
||||||
|
hmac: 1823edf861345f607810aba849580e6b5a24ee5248d44d1b1fa63adccf05c6ee
|
||||||
|
|
||||||
|
...
|
||||||
|
Loading…
Reference in New Issue
Block a user