init
continuous-integration/drone Build is passing

This commit is contained in:
曾志威
2026-04-24 21:56:38 +08:00
parent 3a4fb59135
commit 1efdc13f1a
2 changed files with 27 additions and 0 deletions
+25
View File
@@ -0,0 +1,25 @@
kind: pipeline
name: default
steps:
# 步骤2:拉取其他 Git 项目(common-utils
- name: clone-other-project
image: alpine/git:latest # 轻量 Git 镜像
commands:
# 拉取其他项目到指定目录
- >
git clone
-b dev-kingbase-zhongliang
--depth 1
https://zwzeng:glpat-Ht2452yuDgM84iNzu32b@git.ittx.com.cn/wms/xwms-2-7.git
# docker 打包
- name: deploy
image: registry.cn-hangzhou.aliyuncs.com/loghub/wms-system-service:gradle6
commands:
- cd xwms-2-7
- gradle --init-script ~/.gradle/init.gradle clean build --info -x test -x war --refresh-dependencies
- ls build/libs/*
- cp build/libs/*.war build/libs/zongliang-wms-test.zip
- ossutil -c /root/.ossutilconfig cp build/libs/zongliang-wms-test.zip oss://ttx-download/projects/zongliang-wms-test/ -u
+2
View File
@@ -1,5 +1,7 @@
# 基于 RabbitMQ 4.2 管理界面的 Alpine Linux 镜像构建
FROM rabbitmq:4.2-management-alpine
# 更新 Alpine 包管理器索引和已安装的软件包以确保安全性
RUN set -eux; \
apk update; \
apk upgrade ;