From 2884b7f8bd4522403bf70de711a4d9ecd4edd7a9 Mon Sep 17 00:00:00 2001 From: jasder <2053003901@qq.com> Date: Thu, 27 Mar 2025 23:06:10 +0800 Subject: [PATCH] Update .trustie-pipeline.yml --- .trustie-pipeline.yml | 113 ++++++++++++++++++++---------------------- 1 file changed, 53 insertions(+), 60 deletions(-) diff --git a/.trustie-pipeline.yml b/.trustie-pipeline.yml index 0b56261..6b434b1 100644 --- a/.trustie-pipeline.yml +++ b/.trustie-pipeline.yml @@ -1,63 +1,56 @@ - -kind: pipeline -type: docker -name: 上线部署 -platform: - os: linux +kind: pipeline +type: docker +name: 开发流水线 +platform: + os: linux arch: amd64 +volumes: +- name: cache + host: + path: /var/lib/cache steps: -volumes: -- name: cache - host: - path: /var/lib/cache -steps: -- name: maven - image: maven:3-jdk-10 - volumes: - - name: cache - path: /root/.m2 - commands: +- name: maven + image: maven:3-jdk-10 + volumes: + - name: cache + path: /root/.m2 + commands: - mvn package -DskipTests=true -# 本模板示例为上传软件包和部署脚本到home目录 -# host、username、password可在参数管理中配置 -- name: 上传文件 - image: appleboy/drone-scp - settings: - host: - from_secret: deploy_ip - username: - from_secret: deploy_name - password: - from_secret: deploy_pwd - port: 22 - command_timeout: 2m - target: /opt/demo - source: - - target/*.war - - Dockerfile -# 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板) -# host、username、password可在参数管理中配置 -- name: 远程主机部署 - image: appleboy/drone-ssh - settings: - host: - from_secret: deploy_ip - username: - from_secret: deploy_name - password: - from_secret: deploy_pwd - port: 22 - script: - - echo ====暂停容器开始11======= - - docker rm -f mo-test - - docker rmi mo-test:1.0 - - cd /opt/demo - - echo ====开始部署======= - - docker build -t mo-test:1.0 . - - docker run -d -p 8080:8080 --name mo-test mo-test:1.0 - - echo ====部署成功====== -trigger: - branch: - - master - event: - - push +# 本模板示例为上传软件包和部署脚本到home目录 +# host、username、password可在参数管理中配置 +- name: 上传文件 + image: appleboy/drone-scp + settings: + host: + from_secret: deploy_ip + username: + from_secret: deploy_name + password: + from_secret: deploy_pwd + port: 22 + command_timeout: 2m + target: /opt/demo + source: + - target/*.war + - Dockerfile +# 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板) +# host、username、password可在参数管理中配置 +- name: 远程主机部署 + image: appleboy/drone-ssh + settings: + host: + from_secret: deploy_ip + username: + from_secret: deploy_name + password: + from_secret: deploy_pwd + port: 22 + script: + - echo ====暂停容器开始11======= + - docker rm -f mo-test + - docker rmi mo-test:1.0 + - cd /opt/demo + - echo ====开始部署======= + - docker build -t mo-test:1.0 . + - docker run -d -p 8080:8080 --name mo-test mo-test:1.0 + - echo ====部署成功====== \ No newline at end of file