Clean up slimmed build
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
64b28038e9
commit
4597842ccf
178
.drone.yml
178
.drone.yml
@ -1,6 +1,31 @@
|
|||||||
kind: pipeline
|
kind: pipeline
|
||||||
name: test
|
name: test
|
||||||
|
|
||||||
|
workspace:
|
||||||
|
base: /go/src/dockron
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: build
|
||||||
|
image: golang:1.11
|
||||||
|
commands:
|
||||||
|
- go get -u github.com/golang/dep/cmd/dep
|
||||||
|
- make build
|
||||||
|
|
||||||
|
---
|
||||||
|
kind: pipeline
|
||||||
|
name: publish
|
||||||
|
|
||||||
|
depends_on:
|
||||||
|
- test
|
||||||
|
|
||||||
|
trigger:
|
||||||
|
event:
|
||||||
|
- push
|
||||||
|
- tag
|
||||||
|
refs:
|
||||||
|
- refs/heads/master
|
||||||
|
- refs/tags/v*
|
||||||
|
|
||||||
workspace:
|
workspace:
|
||||||
base: /go/src/dockron
|
base: /go/src/dockron
|
||||||
|
|
||||||
@ -11,21 +36,23 @@ steps:
|
|||||||
- go get -u github.com/golang/dep/cmd/dep
|
- go get -u github.com/golang/dep/cmd/dep
|
||||||
- make build-all-static
|
- make build-all-static
|
||||||
|
|
||||||
- name: push amd64 image
|
- name: push image - amd64
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
repo: iamthefij/dockron
|
repo: iamthefij/dockron
|
||||||
tag: linux-amd64
|
auto_tag: true
|
||||||
|
auto_tag_suffix: linux-amd64
|
||||||
username:
|
username:
|
||||||
from_secret: docker_username
|
from_secret: docker_username
|
||||||
password:
|
password:
|
||||||
from_secret: docker_password
|
from_secret: docker_password
|
||||||
|
|
||||||
- name: push arm image
|
- name: push image - arm
|
||||||
image: plugins/docker
|
image: plugins/docker
|
||||||
settings:
|
settings:
|
||||||
repo: iamthefij/dockron
|
repo: iamthefij/dockron
|
||||||
tag: linux-arm
|
auto_tag: true
|
||||||
|
auto_tag_suffix: linux-arm
|
||||||
username:
|
username:
|
||||||
from_secret: docker_username
|
from_secret: docker_username
|
||||||
password:
|
password:
|
||||||
@ -34,122 +61,27 @@ steps:
|
|||||||
- ARCH=arm
|
- ARCH=arm
|
||||||
- REPO=arm32v6
|
- REPO=arm32v6
|
||||||
|
|
||||||
# ---
|
- name: push image - arm64
|
||||||
# kind: pipeline
|
image: plugins/docker
|
||||||
# name: linux-amd64
|
settings:
|
||||||
#
|
repo: iamthefij/dockron
|
||||||
# depends_on:
|
auto_tag: true
|
||||||
# - test
|
auto_tag_suffix: linux-arm64
|
||||||
#
|
username:
|
||||||
# trigger:
|
from_secret: docker_username
|
||||||
# event:
|
password:
|
||||||
# - push
|
from_secret: docker_password
|
||||||
# - tag
|
build_args:
|
||||||
# refs:
|
- ARCH=arm
|
||||||
# - refs/heads/master
|
- REPO=arm32v6
|
||||||
# - refs/tags/v*
|
|
||||||
#
|
- name: publish manifest
|
||||||
# steps:
|
image: plugins/manifest
|
||||||
#
|
settings:
|
||||||
# - name: build
|
spec: manifest.tmpl
|
||||||
# image: plugins/docker
|
auto_tag: true
|
||||||
# settings:
|
ignore_missing: true
|
||||||
# repo: iamthefij/dockron
|
username:
|
||||||
# auto_tag: true
|
from_secret: docker_username
|
||||||
# auto_tag_suffix: linux-amd64
|
password:
|
||||||
# username:
|
from_secret: docker_password
|
||||||
# from_secret: docker_username
|
|
||||||
# password:
|
|
||||||
# from_secret: docker_password
|
|
||||||
#
|
|
||||||
# ---
|
|
||||||
# kind: pipeline
|
|
||||||
# name: linux-arm
|
|
||||||
#
|
|
||||||
# depends_on:
|
|
||||||
# - test
|
|
||||||
#
|
|
||||||
# trigger:
|
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
# - tag
|
|
||||||
# refs:
|
|
||||||
# - refs/heads/master
|
|
||||||
# - refs/tags/v*
|
|
||||||
#
|
|
||||||
# steps:
|
|
||||||
#
|
|
||||||
# - name: build
|
|
||||||
# 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=arm32v6
|
|
||||||
#
|
|
||||||
# ---
|
|
||||||
# kind: pipeline
|
|
||||||
# name: linux-arm64
|
|
||||||
#
|
|
||||||
# depends_on:
|
|
||||||
# - test
|
|
||||||
#
|
|
||||||
# trigger:
|
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
# - tag
|
|
||||||
# refs:
|
|
||||||
# - refs/heads/master
|
|
||||||
# - refs/tags/v*
|
|
||||||
#
|
|
||||||
# steps:
|
|
||||||
#
|
|
||||||
# - name: build
|
|
||||||
# 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
|
|
||||||
#
|
|
||||||
# ---
|
|
||||||
# kind: pipeline
|
|
||||||
# name: manifest
|
|
||||||
#
|
|
||||||
# depends_on:
|
|
||||||
# - linux-amd64
|
|
||||||
# - linux-arm
|
|
||||||
# - linux-arm64
|
|
||||||
#
|
|
||||||
# trigger:
|
|
||||||
# event:
|
|
||||||
# - push
|
|
||||||
# - tag
|
|
||||||
# ref:
|
|
||||||
# - refs/heads/master
|
|
||||||
# - refs/tags/v*
|
|
||||||
#
|
|
||||||
# steps:
|
|
||||||
# - 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
|
|
||||||
#
|
|
||||||
|
1
.gitignore
vendored
1
.gitignore
vendored
@ -26,5 +26,6 @@ _testmain.go
|
|||||||
|
|
||||||
# Output
|
# Output
|
||||||
dockron
|
dockron
|
||||||
|
dockron-linux-*
|
||||||
# deps
|
# deps
|
||||||
vendor/
|
vendor/
|
||||||
|
Loading…
Reference in New Issue
Block a user