zdd 2 years ago
parent
commit
cdef86130a
2 changed files with 28 additions and 20 deletions
  1. 22 20
      .drone.yml
  2. 6 0
      test.sh

+ 22 - 20
.drone.yml

@@ -1,11 +1,11 @@
 kind: pipeline # 定义对象类型,还有secret和signature两种类型
 type: docker # 定义流水线类型,还有kubernetes、exec、ssh等类型
 name: filesystem-drone # 定义流水线名称
+
 jars:
   - 'airport_common'
   - 'airport_admin'
   - 'airport_api'
-  - 'airport_api'
   - 'airport_file'
   - 'airport_pda'
   - 'airport_sale'
@@ -16,7 +16,7 @@ jars:
 trigger:
   branch:
     - test
-names: zdd
+
 steps: # 定义流水线执行步骤,这些步骤将顺序执行
   - name: package # 流水线名称
     image: maven:3-jdk-8 # 定义创建容器的Docker镜像
@@ -26,26 +26,28 @@ steps: # 定义流水线执行步骤,这些步骤将顺序执行
       - name: maven-build
         path: /app/build # 将应用打包好的Jar和执行脚本挂载出来
     commands: # 定义在Docker容器中执行的shell命令
-      - echo ${names}
-      - mvn clean package # 应用打包命令
-      - cp target/code-test-1.0.0.jar /app/build/code-test-1.0.0.jar
-      - cp Dockerfile /app/build/Dockerfile
-      - cp run.sh /app/build/run.sh
+      - chmod +x test.sh
+      - ./test.sh
+      - cat jars.txt
+#      - mvn clean package # 应用打包命令
+#      - cp target/code-test-1.0.0.jar /app/build/code-test-1.0.0.jar
+#      - cp Dockerfile /app/build/Dockerfile
+#      - cp run.sh /app/build/run.sh
 
 
-  - name: build-start
-    image: appleboy/drone-ssh # SSH工具镜像
-    settings:
-      host: 172.16.90.201 # 远程连接地址
-      username: root # 远程连接账号
-      password:
-        from_secret: ssh_pw # 从Secret中读取SSH密码
-      port: 22 # 远程连接端口
-      command_timeout: 5m # 远程执行命令超时时间
-      script:
-        - cd /mydata/maven/build # 进入宿主机构建目录
-        - chmod +x run.sh # 更改为可执行脚本
-        - ./run.sh # 运行脚本打包应用镜像并运行
+#  - name: build-start
+#    image: appleboy/drone-ssh # SSH工具镜像
+#    settings:
+#      host: 172.16.90.201 # 远程连接地址
+#      username: root # 远程连接账号
+#      password:
+#        from_secret: ssh_pw # 从Secret中读取SSH密码
+#      port: 22 # 远程连接端口
+#      command_timeout: 5m # 远程执行命令超时时间
+#      script:
+#        - cd /mydata/maven/build # 进入宿主机构建目录
+#        - chmod +x run.sh # 更改为可执行脚本
+#        - ./run.sh # 运行脚本打包应用镜像并运行
 
 volumes:
   # 定义流水线挂载目录,用于共享数据

+ 6 - 0
test.sh

@@ -0,0 +1,6 @@
+arrayWen=('airport_admin' 'airport_api' 'airport_file' 'airport_pda' 'airport_sale' 'airport_stock' 'airport_workflow')
+#循环创建文件夹
+for var in ${arrayWen[@]};
+do
+    echo ${var} >> jars.txt
+done