Update '.trustie-pipeline.yml'
continuous-integration/drone/push Build encountered an error Details

pyh2if57b 2 years ago
parent 6687798bf5
commit 0851846256

@ -1,49 +1,52 @@
kind: pipeline kind: pipeline
type: docker type: docker
name: 开发流水线 name: 开发流水线
platform: platform:
os: linux os: linux
arch: amd64 arch: amd64
steps: steps:
- name: ruby
image: ruby
commands:
- bundle install --jobs=3 --retry=3
- rake
- 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目录 # 需要将软件包与部署脚本提前上传到远程主机(见文件上传模板)
# host、username、password可在参数管理中配置 # host、username、password可在参数管理中配置
- name: 上传文件 - name: 远程主机部署
image: appleboy/drone-scp 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
command_timeout: 2m script:
target: /opt/demo - chmod +x /home/deploy.sh
source: - ./home/deploy.sh
- 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 trigger:
- cd /opt/demo branch:
- echo ====开始部署======= - master
- docker build -t mo-test:1.0 . event:
- docker run -d -p 8080:8080 --name mo-test mo-test:1.0 - push
- echo ====部署成功======

Loading…
Cancel
Save