Compare commits

...

6 Commits
cjy ... main

Author SHA1 Message Date
5835cb8de1 Merge branch 'main' of https://gitea-inner.fontree.cn/chain/chain-dci 2025-10-22 15:15:07 +08:00
3e937b66b2 Update .drone.yml 2025-10-17 14:04:39 +08:00
c44ea83b6c Update .drone.yml 2025-10-17 14:04:09 +08:00
36f396de6e Update .drone.yml 2025-10-17 13:53:43 +08:00
jhc
5c888cb1c4 Merge branch 'dev' of http://172.16.100.91:3000/chain/chain-dci into dev
All checks were successful
continuous-integration/drone/push Build is passing
2025-02-18 15:00:00 +08:00
d13ca6fe3e Update .drone.yml
All checks were successful
continuous-integration/drone/push Build is passing
2024-12-12 13:18:09 +08:00

View File

@ -4,27 +4,49 @@ name: chain-dci【K8s-测试服】
volumes:
- name: pkgdeps
host:
path: /mnt/storage/data/drone/define_cache/chain-dci
path: /mnt/data/drone/define_cache/chain-dci
- name: docker
host:
path: /var/run/docker.sock
- name: docker-daemon
host:
path: /etc/docker/daemon.json
clone:
disable: true
steps:
- name: clone-and-configure
image: testhub.szjixun.cn:9043/public/plugins/git
environment:
GITEA_USERNAME:
from_secret: GITEA_USERNAME
GITEA_TOKEN:
from_secret: GITEA_TOKEN
commands:
# 手动克隆主仓库
- git init
- git remote add origin https://${GITEA_USERNAME}:${GITEA_TOKEN}@gitea-inner.fontree.cn/chain/chain-dci
- git fetch --no-tags origin +refs/heads/dev
- git reset --hard origin/dev
# 配置子模块 URL 重定向
- git config --global url."https://${GITEA_USERNAME}:${GITEA_TOKEN}@gitea-inner.fontree.cn/fonchain/oa-proto.git".insteadOf "https://gitea-net.fontree.cn/fonchain/oa-proto.git"
# 配置 HTTPS 凭据
# - git config --global credential.helper 'store --file=/tmp/git-credentials'
# - echo "https://${GITEA_USERNAME}:${GITEA_TOKEN}@gitea-inner.fontree.cn" > /tmp/git-credentials
# 更新子模块
- git submodule update --init --recursive
when:
branch:
- dev
- name: fetch submodules
image: testhub.szjixun.cn:9043/public/plugins/git
pull: if-not-exists
commands:
- git config --file=.gitmodules submodule.oa-proto.url https://gitea-inner.fontree.cn/fonchain/oa-proto.git
- git submodule sync
- git submodule update --init --force --recursive --remote
- name: build
image: testhub.szjixun.cn:9043/public/golang:1.20-alpine
pull: if-not-exists
network:
mode: bridge
options:
com.docker.network.bridge.host_binding_ipv4: "172.16.100.22"
com.docker.network.bridge.name: "dnmp_default"
environment:
GOPROXY: "https://goproxy.cn,direct"
GOPATH: /go
@ -34,6 +56,7 @@ steps:
path: /go/pkg
commands:
- cp DockerfileTest Dockerfile
- go mod tidy
- CGO_ENABLED=0 go build -ldflags "-s -w" -o chain-dci-server ./cmd
- name: publish
image: testhub.szjixun.cn:9043/public/plugins/docker
@ -66,7 +89,6 @@ steps:
dashboard: kuboard
build_repo:
from_secret: build_repo
- name: 钉钉通知
image: testhub.szjixun.cn:9043/public/drone-ding
settings:
@ -81,15 +103,11 @@ steps:
db_log: true
db_type: mysql
db_name: notelog
db_host: "172.16.100.99"
db_port: 9007
db_username: artuser # 后期需要修改
db_password: "C250PflXIWv2SQm8" # 后期需要修改
when:
status: [ failure, success ]
branch: dev
network:
subnet: 172.18.0.0/16
subnet: dnmp_default
trigger:
branch:
- dev