Browse Source

update pipeline for master branch

ansible
parent
commit
84d914fd29
1 changed files with 21 additions and 16 deletions
  1. +21
    -16
      .drone.yml

+ 21
- 16
.drone.yml View File

@@ -2,27 +2,32 @@ kind: pipeline
type: docker
name: 1
platform:
os: linuxs
arch: amd64
os: linux
arch: arm64
steps:
- name: maven
image: maven:3-jdk-10
volumes:
- name: cache
path: /root/.m2
commands:
- mvn install -DskipTests=true
- name: run
image: maven:3-jdk-8
volumes:
- name: cache
path: /root/.m2
- mvn compile

- name: maven
image: maven:3-jdk-10
commands:
- nohup mvn tomcat7:run &
volumes:
- name: cache
host:
path: /var/lib/cache
- mvn test

- name: 远程主机部署
image: appleboy/drone-ssh
settings:
host:
from_secret: ip
username:
from_secret: name
password:
from_secret: pwd
port: 22
script:
- chmod +x /home/deploy.sh
- ./home/deploy.sh
trigger:
branch:
- master


Loading…
Cancel
Save