Update '.trustie-pipeline.yml'

This commit is contained in:
xxq250 2022-05-26 09:39:52 +08:00
parent 2c359e9fcd
commit f46610fb8e
1 changed files with 16 additions and 30 deletions

View File

@ -1,53 +1,39 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: 测试流水线 name: 开发流水线
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
steps: steps:
- name: 编译构建
image: gcc
commands:
- ./configure
- make
- name: maven - name: maven
image: maven:3-jdk-10 image: maven:3-jdk-10
commands: commands:
- mvn install -DskipTests=true - mvn install -DskipTests=true
# 本模板示例为上传软件包和部署脚本到home目录 - name: gradle
# host、username、password可在参数管理中配置 image: gradle:jdk10
- name: 上传文件 commands:
image: appleboy/drone-scp - gradle build -x test
settings:
host:
from_secret: deploy_ip
username:
from_secret: deploy_name
password:
from_secret: deploy_pwd
port: 3522
command_timeout: 2m
target: /opt/demo
source:
- target/*.war
- Dockerfile
# 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板) # 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板)
# host、username、password可在参数管理中配置 # host、username、password可在参数管理中配置
- name: 远程主机部署 - name: 远程主机部署
image: appleboy/drone-ssh image: appleboy/drone-ssh
settings: settings:
host: host:
from_secret: deploy_ip from_secret: ip
username: username:
from_secret: deploy_name from_secret: name
password: password:
from_secret: deploy_pwd from_secret: pwd
port: 3522 port: 22
script: script:
- echo ====暂停容器开始11======= - chmod +x /home/deploy.sh
- docker rm -f mo-test - ./home/deploy.sh
- 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: trigger:
branch: branch:
- develop - develop