aboutsummaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml145
1 files changed, 145 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000000..7c3c8d0f02
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,145 @@
+---
+kind: pipeline
+name: edge-x86
+
+clone:
+ depth: 50
+
+platform:
+ os: linux
+ arch: amd64
+
+workspace:
+ base: /home/buildozer/drone
+ path: aports
+
+steps:
+ - name: build
+ image: alpinelinux/alpine-drone-ci:edge-x86
+ commands:
+ - build.sh
+ environment:
+ GH_TOKEN:
+ from_secret: github_token
+ pull: always
+
+trigger:
+ event:
+ - pull_request
+
+---
+kind: pipeline
+name: edge-x86_64
+
+clone:
+ depth: 50
+
+platform:
+ os: linux
+ arch: amd64
+
+workspace:
+ base: /home/buildozer/drone
+ path: aports
+
+steps:
+ - name: build
+ image: alpinelinux/alpine-drone-ci:edge-x86_64
+ commands:
+ - build.sh
+ environment:
+ GH_TOKEN:
+ from_secret: github_token
+ pull: always
+
+trigger:
+ event:
+ - pull_request
+
+---
+kind: pipeline
+name: edge-aarch64
+
+clone:
+ depth: 50
+
+platform:
+ os: linux
+ arch: arm64
+
+workspace:
+ base: /home/buildozer/drone
+ path: aports
+
+steps:
+ - name: build
+ image: alpinelinux/alpine-drone-ci:edge-aarch64
+ commands:
+ - build.sh
+ environment:
+ GH_TOKEN:
+ from_secret: github_token
+ pull: always
+
+trigger:
+ event:
+ - pull_request
+
+---
+kind: pipeline
+name: edge-armhf
+
+clone:
+ depth: 50
+
+platform:
+ os: linux
+ arch: arm
+
+workspace:
+ base: /home/buildozer/drone
+ path: aports
+
+steps:
+ - name: build
+ image: alpinelinux/alpine-drone-ci:edge-armhf
+ commands:
+ - build.sh
+ environment:
+ GH_TOKEN:
+ from_secret: github_token
+ pull: always
+
+trigger:
+ event:
+ - pull_request
+
+---
+kind: pipeline
+name: edge-armv7
+
+clone:
+ depth: 50
+
+platform:
+ os: linux
+ arch: arm
+
+workspace:
+ base: /home/buildozer/drone
+ path: aports
+
+steps:
+ - name: build
+ image: alpinelinux/alpine-drone-ci:edge-armv7
+ commands:
+ - build.sh
+ environment:
+ GH_TOKEN:
+ from_secret: github_token
+ pull: always
+
+trigger:
+ event:
+ - pull_request
+