浏览代码

Initial .drone.yml.

tags/v0.0.1
Peter Vivell 6 年前
父节点
当前提交
cdc94febac
共有 1 个文件被更改,包括 16 次插入0 次删除
  1. 16
    0
      .drone.yml

+ 16
- 0
.drone.yml 查看文件

@@ -0,0 +1,16 @@
1
+kind: pipeline
2
+name: default
3
+
4
+steps:
5
+- name: frontend
6
+  image: debian/stable-slim
7
+  commands:
8
+  - apt update
9
+  - apt upgrade
10
+
11
+- name: backend
12
+  image: debian/stable-slim
13
+  commands:
14
+  - apt update
15
+  - apt upgrade
16
+  - apt -y install build-essential

正在加载...
取消
保存