@ -13,12 +13,25 @@ trigger:
- tag
- tag
- pull_request
- pull_request
volumes:
- name : deps
temp : {}
steps:
steps:
- name : deps-frontend
- name : deps-frontend
pull : always
image : node:16
image : node:16
pull : always
commands:
- make deps-frontend
- name : deps-backend
image : golang:1.17
pull : always
commands:
commands:
- make node_modules
- make deps-backend
volumes:
- name : deps
path : /go
- name : lint-frontend
- name : lint-frontend
image : node:16
image : node:16
@ -27,17 +40,17 @@ steps:
depends_on : [ deps-frontend]
depends_on : [ deps-frontend]
- name : lint-backend
- name : lint-backend
pull : always
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
pull : always
commands:
commands:
- make lint-backend
- make lint-backend
environment:
environment:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOSUMDB : sum.golang.org
GOSUMDB : sum.golang.org
TAGS : bindata sqlite sqlite_unlock_notify
TAGS : bindata sqlite sqlite_unlock_notify
depends_on : [ deps-backend]
- name : lint-backend-windows
- name : lint-backend-windows
pull : always
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
commands:
commands:
- make golangci-lint vet
- make golangci-lint vet
@ -47,9 +60,9 @@ steps:
TAGS : bindata sqlite sqlite_unlock_notify
TAGS : bindata sqlite sqlite_unlock_notify
GOOS : windows
GOOS : windows
GOARCH : amd64
GOARCH : amd64
depends_on : [ deps-backend]
- name : lint-backend-gogit
- name : lint-backend-gogit
pull : always
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
commands:
commands:
- make lint-backend
- make lint-backend
@ -57,6 +70,7 @@ steps:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOSUMDB : sum.golang.org
GOSUMDB : sum.golang.org
TAGS : bindata gogit sqlite sqlite_unlock_notify
TAGS : bindata gogit sqlite sqlite_unlock_notify
depends_on : [ deps-backend]
- name : checks-frontend
- name : checks-frontend
image : node:16
image : node:16
@ -65,11 +79,13 @@ steps:
depends_on : [ deps-frontend]
depends_on : [ deps-frontend]
- name : checks-backend
- name : checks-backend
pull : always
image : golang:1.17
image : golang:1.17
commands:
commands:
- make checks-backend
- make checks-backend
depends_on : [ lint-backend]
depends_on : [ deps-backend]
volumes:
- name : deps
path : /go
- name : test-frontend
- name : test-frontend
image : node:16
image : node:16
@ -84,14 +100,17 @@ steps:
depends_on : [ test-frontend]
depends_on : [ test-frontend]
- name : build-backend-no-gcc
- name : build-backend-no-gcc
pull : always
image : golang:1.16 # this step is kept as the lowest version of golang that we support
image : golang:1.16 # this step is kept as the lowest version of golang that we support
pull : always
environment:
environment:
GO111MODULE : on
GO111MODULE : on
GOPROXY : https://goproxy.cn
GOPROXY : https://goproxy.cn
commands:
commands:
- go build -o gitea_no_gcc # test if build succeeds without the sqlite tag
- go build -o gitea_no_gcc # test if build succeeds without the sqlite tag
depends_on : [ checks-backend]
depends_on : [ deps-backend, checks-backend]
volumes:
- name : deps
path : /go
- name : build-backend-arm64
- name : build-backend-arm64
image : golang:1.17
image : golang:1.17
@ -104,7 +123,10 @@ steps:
commands:
commands:
- make backend # test cross compile
- make backend # test cross compile
- rm ./gitea # clean
- rm ./gitea # clean
depends_on : [ checks-backend]
depends_on : [ deps-backend, checks-backend]
volumes:
- name : deps
path : /go
- name : build-backend-windows
- name : build-backend-windows
image : golang:1.17
image : golang:1.17
@ -116,7 +138,10 @@ steps:
TAGS : bindata gogit
TAGS : bindata gogit
commands:
commands:
- go build -o gitea_windows
- go build -o gitea_windows
depends_on : [ checks-backend]
depends_on : [ deps-backend, checks-backend]
volumes:
- name : deps
path : /go
- name : build-backend-386
- name : build-backend-386
image : golang:1.17
image : golang:1.17
@ -127,7 +152,10 @@ steps:
GOARCH : 386
GOARCH : 386
commands:
commands:
- go build -o gitea_linux_386 # test if compatible with 32 bit
- go build -o gitea_linux_386 # test if compatible with 32 bit
depends_on : [ checks-backend]
depends_on : [ deps-backend, checks-backend]
volumes:
- name : deps
path : /go
---
---
kind : pipeline
kind : pipeline
@ -147,21 +175,28 @@ trigger:
- tag
- tag
- pull_request
- pull_request
volumes:
- name : deps
temp : {}
services:
services:
- name : mysql
- name : mysql
image : mysql:5.7
image : mysql:5.7
pull : always
environment:
environment:
MYSQL_ALLOW_EMPTY_PASSWORD : yes
MYSQL_ALLOW_EMPTY_PASSWORD : yes
MYSQL_DATABASE : test
MYSQL_DATABASE : test
- name : mysql8
- name : mysql8
image : mysql:8
image : mysql:8
pull : always
environment:
environment:
MYSQL_ALLOW_EMPTY_PASSWORD : yes
MYSQL_ALLOW_EMPTY_PASSWORD : yes
MYSQL_DATABASE : testgitea
MYSQL_DATABASE : testgitea
- name : mssql
- name : mssql
image : mcr.microsoft.com/mssql/server:latest
image : mcr.microsoft.com/mssql/server:latest
pull : always
environment:
environment:
ACCEPT_EULA : Y
ACCEPT_EULA : Y
MSSQL_PID : Standard
MSSQL_PID : Standard
@ -169,14 +204,17 @@ services:
- name : ldap
- name : ldap
image : gitea/test-openldap:latest
image : gitea/test-openldap:latest
pull : always
- name : elasticsearch
- name : elasticsearch
image : elasticsearch:7.5.0
pull : always
environment:
environment:
discovery.type : single-node
discovery.type : single-node
image : elasticsearch:7.5.0
- name : minio
- name : minio
image : minio/minio:RELEASE.2021-03-12T00-00-47Z
image : minio/minio:RELEASE.2021-03-12T00-00-47Z
pull : always
commands:
commands:
- minio server /data
- minio server /data
environment:
environment:
@ -186,6 +224,7 @@ services:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
when:
when:
@ -193,19 +232,28 @@ steps:
exclude:
exclude:
- pull_request
- pull_request
- name : tag-pre-condition
- name : deps-backend
image : golang:1.17
pull : always
pull : always
commands:
- make deps-backend
volumes:
- name : deps
path : /go
- name : tag-pre-condition
image : drone/git
image : drone/git
pull : always
commands:
commands:
- git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA}
- git update-ref refs/heads/tag_test ${DRONE_COMMIT_SHA}
- name : prepare-test-env
- name : prepare-test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
pull : always
commands:
commands:
- ./build/test-env-prepare.sh
- ./build/test-env-prepare.sh
- name : build
- name : build
pull : always
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
user : gitea
user : gitea
commands:
commands:
@ -215,8 +263,10 @@ steps:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOSUMDB : sum.golang.org
GOSUMDB : sum.golang.org
TAGS : bindata sqlite sqlite_unlock_notify
TAGS : bindata sqlite sqlite_unlock_notify
depends_on:
depends_on : [ deps-backend, prepare-test-env]
- prepare-test-env
volumes:
- name : deps
path : /go
- name : unit-test
- name : unit-test
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
@ -229,9 +279,12 @@ steps:
RACE_ENABLED : true
RACE_ENABLED : true
GITHUB_READ_TOKEN:
GITHUB_READ_TOKEN:
from_secret : github_read_token
from_secret : github_read_token
depends_on : [ deps-backend, prepare-test-env]
volumes:
- name : deps
path : /go
- name : unit-test-gogit
- name : unit-test-gogit
pull : always
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
user : gitea
user : gitea
commands:
commands:
@ -242,6 +295,10 @@ steps:
RACE_ENABLED : true
RACE_ENABLED : true
GITHUB_READ_TOKEN:
GITHUB_READ_TOKEN:
from_secret : github_read_token
from_secret : github_read_token
depends_on : [ deps-backend, prepare-test-env]
volumes:
- name : deps
path : /go
- name : test-mysql
- name : test-mysql
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
@ -255,8 +312,10 @@ steps:
TEST_LDAP : 1
TEST_LDAP : 1
USE_REPO_TEST_DIR : 1
USE_REPO_TEST_DIR : 1
TEST_INDEXER_CODE_ES_URL : "http://elastic:changeme@elasticsearch:9200"
TEST_INDEXER_CODE_ES_URL : "http://elastic:changeme@elasticsearch:9200"
depends_on:
depends_on : [ build]
- build
volumes:
- name : deps
path : /go
- name : test-mysql8
- name : test-mysql8
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
@ -269,8 +328,10 @@ steps:
RACE_ENABLED : true
RACE_ENABLED : true
TEST_LDAP : 1
TEST_LDAP : 1
USE_REPO_TEST_DIR : 1
USE_REPO_TEST_DIR : 1
depends_on:
depends_on : [ build]
- build
volumes:
- name : deps
path : /go
- name : test-mssql
- name : test-mssql
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-amd64 # https://gitea.com/gitea/test-env
@ -283,8 +344,10 @@ steps:
RACE_ENABLED : true
RACE_ENABLED : true
TEST_LDAP : 1
TEST_LDAP : 1
USE_REPO_TEST_DIR : 1
USE_REPO_TEST_DIR : 1
depends_on:
depends_on : [ build]
- build
volumes:
- name : deps
path : /go
- name : generate-coverage
- name : generate-coverage
image : golang:1.17
image : golang:1.17
@ -293,9 +356,7 @@ steps:
environment:
environment:
GOPROXY : https://goproxy.cn
GOPROXY : https://goproxy.cn
TAGS : bindata
TAGS : bindata
depends_on:
depends_on : [ unit-test, test-mysql]
- unit-test
- test-mysql
when:
when:
branch:
branch:
- main
- main
@ -304,15 +365,14 @@ steps:
- pull_request
- pull_request
- name : coverage-codecov
- name : coverage-codecov
pull : always
image : woodpeckerci/plugin-codecov:next-alpine
image : woodpeckerci/plugin-codecov:next-alpine
pull : always
settings:
settings:
files:
files:
- coverage.all
- coverage.all
token:
token:
from_secret : codecov_token
from_secret : codecov_token
depends_on:
depends_on : [ generate-coverage]
- generate-coverage
when:
when:
branch:
branch:
- main
- main
@ -337,6 +397,10 @@ trigger:
- tag
- tag
- pull_request
- pull_request
volumes:
- name : deps
temp : {}
services:
services:
- name : pgsql
- name : pgsql
pull : default
pull : default
@ -352,6 +416,7 @@ services:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
when:
when:
@ -359,13 +424,22 @@ steps:
exclude:
exclude:
- pull_request
- pull_request
- name : deps-backend
image : golang:1.17
pull : always
commands:
- make deps-backend
volumes:
- name : deps
path : /go
- name : prepare-test-env
- name : prepare-test-env
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
pull : always
commands:
commands:
- ./build/test-env-prepare.sh
- ./build/test-env-prepare.sh
- name : build
- name : build
pull : always
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
user : gitea
user : gitea
commands:
commands:
@ -375,8 +449,10 @@ steps:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOSUMDB : sum.golang.org
GOSUMDB : sum.golang.org
TAGS : bindata gogit sqlite sqlite_unlock_notify
TAGS : bindata gogit sqlite sqlite_unlock_notify
depends_on:
depends_on : [ deps-backend, prepare-test-env]
- prepare-test-env
volumes:
- name : deps
path : /go
- name : test-sqlite
- name : test-sqlite
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
@ -389,8 +465,10 @@ steps:
RACE_ENABLED : true
RACE_ENABLED : true
TEST_TAGS : gogit sqlite sqlite_unlock_notify
TEST_TAGS : gogit sqlite sqlite_unlock_notify
USE_REPO_TEST_DIR : 1
USE_REPO_TEST_DIR : 1
depends_on:
depends_on : [ build]
- build
volumes:
- name : deps
path : /go
- name : test-pgsql
- name : test-pgsql
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
image : gitea/test_env:linux-arm64 # https://gitea.com/gitea/test-env
@ -404,8 +482,10 @@ steps:
TEST_TAGS : gogit
TEST_TAGS : gogit
TEST_LDAP : 1
TEST_LDAP : 1
USE_REPO_TEST_DIR : 1
USE_REPO_TEST_DIR : 1
depends_on:
depends_on : [ build]
- build
volumes:
- name : deps
path : /go
---
---
kind : pipeline
kind : pipeline
@ -425,8 +505,8 @@ trigger:
steps:
steps:
- name : download
- name : download
pull : always
image : jonasfranz/crowdin
image : jonasfranz/crowdin
pull : always
settings:
settings:
download : true
download : true
export_dir : options/locale/
export_dir : options/locale/
@ -437,14 +517,14 @@ steps:
from_secret : crowdin_key
from_secret : crowdin_key
- name : update
- name : update
pull : default
image : alpine:3.13
image : alpine:3.13
pull : always
commands:
commands:
- ./build/update-locales.sh
- ./build/update-locales.sh
- name : push
- name : push
pull : always
image : appleboy/drone-git-push
image : appleboy/drone-git-push
pull : always
settings:
settings:
author_email : "teabot@gitea.io"
author_email : "teabot@gitea.io"
author_name : GiteaBot
author_name : GiteaBot
@ -457,8 +537,8 @@ steps:
from_secret : git_push_ssh_key
from_secret : git_push_ssh_key
- name : upload_translations
- name : upload_translations
pull : always
image : jonasfranz/crowdin
image : jonasfranz/crowdin
pull : always
settings:
settings:
files:
files:
locale_en-US.ini : options/locale/locale_en-US.ini
locale_en-US.ini : options/locale/locale_en-US.ini
@ -488,12 +568,13 @@ trigger:
steps:
steps:
- name : download
- name : download
image : golang:1.17
image : golang:1.17
pull : always
commands:
commands:
- timeout -s ABRT 40m make generate-license generate-gitignore
- timeout -s ABRT 40m make generate-license generate-gitignore
- name : push
- name : push
pull : always
image : appleboy/drone-git-push
image : appleboy/drone-git-push
pull : always
settings:
settings:
author_email : "teabot@gitea.io"
author_email : "teabot@gitea.io"
author_name : GiteaBot
author_name : GiteaBot
@ -529,15 +610,35 @@ depends_on:
- testing-amd64
- testing-amd64
- testing-arm64
- testing-arm64
volumes:
- name : deps
temp : {}
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : static
- name : deps-frontend
image : node:16
pull : always
commands:
- make deps-frontend
- name : deps-backend
image : golang:1.17
pull : always
pull : always
commands:
- make deps-backend
volumes:
- name : deps
path : /go
- name : static
image : techknowlogick/xgo:go-1.17.x
image : techknowlogick/xgo:go-1.17.x
pull : always
commands:
commands:
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- export PATH=$PATH:$GOPATH/bin
- export PATH=$PATH:$GOPATH/bin
@ -545,10 +646,13 @@ steps:
environment:
environment:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
TAGS : bindata sqlite sqlite_unlock_notify
TAGS : bindata sqlite sqlite_unlock_notify
volumes:
- name : deps
path : /go
- name : gpg-sign
- name : gpg-sign
pull : always
image : plugins/gpgsign:1
image : plugins/gpgsign:1
pull : always
settings:
settings:
detach_sign : true
detach_sign : true
excludes:
excludes:
@ -562,8 +666,8 @@ steps:
from_secret : gpgsign_passphrase
from_secret : gpgsign_passphrase
- name : release-branch
- name : release-branch
pull : always
image : woodpeckerci/plugin-s3:latest
image : woodpeckerci/plugin-s3:latest
pull : always
settings:
settings:
acl : public-read
acl : public-read
bucket : gitea-artifacts
bucket : gitea-artifacts
@ -624,16 +728,35 @@ depends_on:
- testing-arm64
- testing-arm64
- testing-amd64
- testing-amd64
volumes:
- name : deps
temp : {}
steps:
steps:
- name : fetch-tags
- name : fetch-tags
pull : default
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : static
- name : deps-frontend
image : node:16
pull : always
commands:
- make deps-frontend
- name : deps-backend
image : golang:1.17
pull : always
pull : always
commands:
- make deps-backend
volumes:
- name : deps
path : /go
- name : static
image : techknowlogick/xgo:go-1.17.x
image : techknowlogick/xgo:go-1.17.x
pull : always
commands:
commands:
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- curl -sL https://deb.nodesource.com/setup_16.x | bash - && apt-get install -y nodejs
- export PATH=$PATH:$GOPATH/bin
- export PATH=$PATH:$GOPATH/bin
@ -642,10 +765,13 @@ steps:
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
GOPROXY : https://goproxy.cn # proxy.golang.org is blocked in China, this proxy is not
TAGS : bindata sqlite sqlite_unlock_notify
TAGS : bindata sqlite sqlite_unlock_notify
depends_on : [ fetch-tags]
depends_on : [ fetch-tags]
volumes:
- name : deps
path : /go
- name : gpg-sign
- name : gpg-sign
pull : always
image : plugins/gpgsign:1
image : plugins/gpgsign:1
pull : always
settings:
settings:
detach_sign : true
detach_sign : true
excludes:
excludes:
@ -660,8 +786,8 @@ steps:
depends_on : [ static]
depends_on : [ static]
- name : release-tag
- name : release-tag
pull : always
image : woodpeckerci/plugin-s3:latest
image : woodpeckerci/plugin-s3:latest
pull : always
settings:
settings:
acl : public-read
acl : public-read
bucket : gitea-artifacts
bucket : gitea-artifacts
@ -678,8 +804,8 @@ steps:
depends_on : [ gpg-sign]
depends_on : [ gpg-sign]
- name : github
- name : github
pull : always
image : plugins/github-release:1
image : plugins/github-release:1
pull : always
settings:
settings:
files:
files:
- "dist/release/*"
- "dist/release/*"
@ -708,16 +834,16 @@ trigger:
steps:
steps:
- name : build-docs
- name : build-docs
pull : always
image : plugins/hugo:latest
image : plugins/hugo:latest
pull : always
commands:
commands:
- apk add --no-cache make bash curl
- apk add --no-cache make bash curl
- cd docs
- cd docs
- make trans-copy clean build
- make trans-copy clean build
- name : publish-docs
- name : publish-docs
pull : always
image : techknowlogick/drone-netlify:latest
image : techknowlogick/drone-netlify:latest
pull : always
settings:
settings:
path : docs/public/
path : docs/public/
site_id : d2260bae-7861-4c02-8646-8f6440b12672
site_id : d2260bae-7861-4c02-8646-8f6440b12672
@ -753,12 +879,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : true
auto_tag : true
auto_tag_suffix : linux-amd64
auto_tag_suffix : linux-amd64
@ -815,12 +942,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : false
auto_tag : false
tags : dev-linux-amd64
tags : dev-linux-amd64
@ -876,12 +1004,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : false
auto_tag : false
tags : ${DRONE_BRANCH##release/v}-dev-linux-amd64
tags : ${DRONE_BRANCH##release/v}-dev-linux-amd64
@ -933,8 +1062,8 @@ trigger:
steps:
steps:
- name : dryrun
- name : dryrun
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
dry_run : true
dry_run : true
repo : gitea/gitea
repo : gitea/gitea
@ -971,12 +1100,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : true
auto_tag : true
auto_tag_suffix : linux-arm64
auto_tag_suffix : linux-arm64
@ -1033,12 +1163,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : false
auto_tag : false
tags : dev-linux-arm64
tags : dev-linux-arm64
@ -1094,12 +1225,13 @@ trigger:
steps:
steps:
- name : fetch-tags
- name : fetch-tags
image : docker:git
image : docker:git
pull : always
commands:
commands:
- git fetch --tags --force
- git fetch --tags --force
- name : publish
- name : publish
pull : always
image : techknowlogick/drone-docker:latest
image : techknowlogick/drone-docker:latest
pull : always
settings:
settings:
auto_tag : false
auto_tag : false
tags : ${DRONE_BRANCH##release/v}-dev-linux-arm64
tags : ${DRONE_BRANCH##release/v}-dev-linux-arm64
@ -1144,8 +1276,8 @@ platform:
steps:
steps:
- name : manifest-rootless
- name : manifest-rootless
pull : always
image : plugins/manifest
image : plugins/manifest
pull : always
settings:
settings:
auto_tag : true
auto_tag : true
ignore_missing : true
ignore_missing : true
@ -1190,6 +1322,7 @@ steps:
- name : manifest-rootless
- name : manifest-rootless
pull : always
pull : always
image : plugins/manifest
image : plugins/manifest
pull : always
settings:
settings:
auto_tag : false
auto_tag : false
ignore_missing : true
ignore_missing : true
@ -1264,8 +1397,8 @@ depends_on:
steps:
steps:
- name : discord
- name : discord
pull : always
image : appleboy/drone-discord:1.2.4
image : appleboy/drone-discord:1.2.4
pull : always
settings:
settings:
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"
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"
webhook_id:
webhook_id: