From 78595df0b690665ee087d330037b40bd466d8f98 Mon Sep 17 00:00:00 2001 From: zengsb Date: Thu, 15 Jun 2023 16:25:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95drone=E6=89=A7=E8=A1=8C?= =?UTF-8?q?=E8=A1=8C=E4=B8=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 21 +++++++++++++-------- 1 file changed, 13 insertions(+), 8 deletions(-) diff --git a/.drone.yml b/.drone.yml index bb26c38..6ab6004 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,11 +1,16 @@ -kind: pipeline # 定义一个管道 -type: docker # 当前管道的类型 -name: test # 当前管道的名称 -steps: # 定义管道的执行步骤 - - name: test # 步骤名称 - image: node:latest # 当前步骤使用的镜像 - commands: # 当前步骤执行的命令 - - echo 测试drone执行 +kind: pipeline # kind 属性定义了对象的种类。此示例定义了一个管道对象。 +type: docker # type 属性定义管道的类型。此示例定义了一个 Docker 管道,其中每个管道步骤都在 Docker 容器内执行。 +name: default # name 属性定义了管道的名称。您可以为您的项目定义一个或多个管道 +clone: + disable: true # 启用代码拉取 + +steps: # 步骤部分定义了一系列串行执行的管道步骤。如果管道中的任何步骤失败,管道将立即退出 + - name: greeting # name 属性定义管道步骤的名称 + image: alpine # image 属性定义了一个执行 shell 命令的 Docker 镜像。您可以使用来自任何 DockerHub 中的任何 Docker镜像。 + commands: # commands 属性将在 Docker 容器内执行的 shell 命令列表定义为容器入口点。如果任何命令返回非零退出代码,则管道步骤将失败。 + - echo hello + - echo world + #kind: pipeline #type: exec