diff --git a/.drone.yml b/.drone.yml index 382e2a0..2d324f3 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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