2019-02-22 05:33:19 +03:00
|
|
|
{
|
|
|
|
test:: {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'testing',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'vet',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
commands: [
|
|
|
|
'make vet',
|
|
|
|
],
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'gopath',
|
|
|
|
path: '/go',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'lint',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
commands: [
|
|
|
|
'make lint',
|
|
|
|
],
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'gopath',
|
|
|
|
path: '/go',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'misspell',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
commands: [
|
|
|
|
'make misspell-check',
|
|
|
|
],
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'gopath',
|
|
|
|
path: '/go',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'test',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
environment: {
|
|
|
|
TELEGRAM_TOKEN: { 'from_secret': 'telegram_token' },
|
|
|
|
TELEGRAM_TO: { 'from_secret': 'telegram_to' },
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'make test',
|
|
|
|
'make coverage',
|
|
|
|
],
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'gopath',
|
|
|
|
path: '/go',
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'codecov',
|
|
|
|
image: 'robertstettner/drone-codecov',
|
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
token: { 'from_secret': 'codecov_token' },
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
volumes: [
|
|
|
|
{
|
|
|
|
name: 'gopath',
|
|
|
|
temp: {},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
},
|
|
|
|
|
|
|
|
build(name, os='linux', arch='amd64'):: {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: os + '-' + arch,
|
|
|
|
platform: {
|
|
|
|
os: os,
|
|
|
|
arch: arch,
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'build-push',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
environment: {
|
|
|
|
CGO_ENABLED: '0',
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'go build -v -ldflags \'-X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name,
|
|
|
|
],
|
|
|
|
when: {
|
|
|
|
event: {
|
|
|
|
exclude: [ 'tag' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'build-tag',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
environment: {
|
|
|
|
CGO_ENABLED: '0',
|
|
|
|
},
|
|
|
|
commands: [
|
|
|
|
'go build -v -ldflags \'-X main.version=${DRONE_TAG##v} -X main.build=${DRONE_BUILD_NUMBER}\' -a -o release/' + os + '/' + arch + '/' + name,
|
|
|
|
],
|
|
|
|
when: {
|
|
|
|
event: [ 'tag' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'executable',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
commands: [
|
|
|
|
'./release/' + os + '/' + arch + '/' + name + ' --help',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'dryrun',
|
|
|
|
image: 'plugins/docker:' + os + '-' + arch,
|
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
daemon_off: false,
|
|
|
|
dry_run: true,
|
|
|
|
tags: os + '-' + arch,
|
|
|
|
dockerfile: 'docker/Dockerfile.' + os + '.' + arch,
|
|
|
|
repo: 'appleboy/' + name,
|
|
|
|
cache_from: 'appleboy/' + name,
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
event: [ 'pull_request' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'publish',
|
|
|
|
image: 'plugins/docker:' + os + '-' + arch,
|
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
daemon_off: 'false',
|
|
|
|
auto_tag: true,
|
|
|
|
auto_tag_suffix: os + '-' + arch,
|
|
|
|
dockerfile: 'docker/Dockerfile.' + os + '.' + arch,
|
|
|
|
repo: 'appleboy/' + name,
|
|
|
|
cache_from: 'appleboy/' + name,
|
|
|
|
username: { 'from_secret': 'docker_username' },
|
|
|
|
password: { 'from_secret': 'docker_password' },
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
event: {
|
|
|
|
exclude: [ 'pull_request' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'testing',
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: [
|
|
|
|
'refs/heads/master',
|
|
|
|
'refs/pull/**',
|
|
|
|
'refs/tags/**',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
release:: {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'release-binary',
|
|
|
|
platform: {
|
|
|
|
os: 'linux',
|
|
|
|
arch: 'amd64',
|
|
|
|
},
|
|
|
|
steps: [
|
|
|
|
{
|
|
|
|
name: 'build-all-binary',
|
2021-04-03 01:39:46 +03:00
|
|
|
image: 'golang:1.16',
|
2019-02-22 05:33:19 +03:00
|
|
|
pull: 'always',
|
|
|
|
commands: [
|
|
|
|
'make release'
|
|
|
|
],
|
|
|
|
when: {
|
|
|
|
event: [ 'tag' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: 'deploy-all-binary',
|
|
|
|
image: 'plugins/github-release',
|
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
files: [ 'dist/release/*' ],
|
|
|
|
api_key: { 'from_secret': 'github_release_api_key' },
|
|
|
|
},
|
|
|
|
when: {
|
|
|
|
event: [ 'tag' ],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: [
|
|
|
|
'testing',
|
|
|
|
],
|
|
|
|
trigger: {
|
|
|
|
ref: [
|
|
|
|
'refs/tags/**',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
notifications(os='linux', arch='amd64', depends_on=[]):: {
|
|
|
|
kind: 'pipeline',
|
|
|
|
name: 'notifications',
|
|
|
|
platform: {
|
|
|
|
os: os,
|
|
|
|
arch: arch,
|
|
|
|
},
|
|
|
|
steps: [
|
2019-09-25 19:39:41 +03:00
|
|
|
{
|
|
|
|
name: 'telegram',
|
2020-10-03 05:37:35 +03:00
|
|
|
image: 'appleboy/drone-telegram:linux-amd64',
|
2019-09-25 19:39:41 +03:00
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
to: { from_secret: 'telegram_to' },
|
|
|
|
token: { from_secret: 'telegram_token' },
|
2020-07-20 09:50:22 +03:00
|
|
|
message: '{{#success build.status}} ✅ Build #{{build.number}} of `{{repo.name}}` succeeded.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\n🌐 {{ build.link }} {{else}} ❌ Build #{{build.number}} of `{{repo.name}}` failed.\n\n📝 Commit by {{commit.author}} on `{{commit.branch}}`:\n``` {{commit.message}} ```\n\n🌐 {{ build.link }} {{/success}}\n\n timecost: {{since build.started}}\n',
|
2019-09-25 19:39:41 +03:00
|
|
|
},
|
|
|
|
},
|
2019-02-22 05:33:19 +03:00
|
|
|
{
|
|
|
|
name: 'manifest',
|
|
|
|
image: 'plugins/manifest',
|
|
|
|
pull: 'always',
|
|
|
|
settings: {
|
|
|
|
username: { from_secret: 'docker_username' },
|
|
|
|
password: { from_secret: 'docker_password' },
|
|
|
|
spec: 'docker/manifest.tmpl',
|
|
|
|
ignore_missing: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
],
|
|
|
|
depends_on: depends_on,
|
|
|
|
trigger: {
|
|
|
|
ref: [
|
|
|
|
'refs/heads/master',
|
|
|
|
'refs/tags/**',
|
|
|
|
],
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
|
|
|
signature(key):: {
|
|
|
|
kind: 'signature',
|
|
|
|
hmac: key,
|
|
|
|
}
|
|
|
|
}
|