From 4365cc8600c2913ebdd339c8cb5ff0b35cd608af Mon Sep 17 00:00:00 2001 From: BryantHe Date: Tue, 14 Jun 2022 16:10:00 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8F=90=E4=BA=A4=20drone=20=E6=96=87=E4=BB=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..e30e632 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,12 @@ +# drone 会自动先拉取代码 +# 再按顺序执行 pipeline 配置中定义的任务 + +# 这个配置定义了一个叫 run 的步骤 +# 代码拉取后会使用 python:3.7-alpine3.8 镜像来执行项目目录下的 a.py 文件 +# 由于现在仓库中并不存在 a.py 文件所以第次的测试肯定是失败的 + +pipeline: + run: + image: 3.9.13-alpine3.15 + commands: + - python3 a.py \ No newline at end of file