summaryrefslogtreecommitdiffstats
path: root/.drone.yml
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-23 11:29:01 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2021-07-23 11:37:28 +0000
commita7283ab143d4e95e8f5f22b58c61cb4e2f604749 (patch)
tree3ec5165ac7f1299f5c0dc3e41d7560a06e6267f5 /.drone.yml
parentAdding debian version 0.6.0-2. (diff)
downloadck-a7283ab143d4e95e8f5f22b58c61cb4e2f604749.tar.xz
ck-a7283ab143d4e95e8f5f22b58c61cb4e2f604749.zip
Merging upstream version 0.7.1 (Closes: #991419).
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '.drone.yml')
-rw-r--r--.drone.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.drone.yml b/.drone.yml
new file mode 100644
index 0000000..c0001db
--- /dev/null
+++ b/.drone.yml
@@ -0,0 +1,29 @@
+kind: pipeline
+name: gcc/amd64/linux
+
+platform:
+ arch: amd64
+
+steps:
+- name: build
+ image: gcc
+ pull: true
+ commands:
+ - ./tools/ci-build.sh --cores=4
+ - make check
+
+---
+kind: pipeline
+name: gcc/arm64/linux
+
+platform:
+ arch: arm64
+
+steps:
+- name: build
+ image: gcc
+ pull: true
+ commands:
+ - ./tools/ci-build.sh --cores=4
+ - make check
+