Test drone CI
authorIsuru Fernando <isuruf@gmail.com>
Sun, 12 May 2019 18:35:07 +0000 (13:35 -0500)
committerIsuru Fernando <isuruf@gmail.com>
Sun, 12 May 2019 19:10:09 +0000 (14:10 -0500)
.drone.yml [new file with mode: 0644]

diff --git a/.drone.yml b/.drone.yml
new file mode 100644 (file)
index 0000000..b2300b8
--- /dev/null
@@ -0,0 +1,19 @@
+---
+kind: pipeline
+name: arm64_gcc
+
+platform:
+  os: linux
+  arch: arm64
+
+steps:
+- name: Build
+  image: centos:7
+  environment:
+    CC: gcc
+    COMMON_FLAGS: 'DYNAMIC_ARCH=1 TARGET=ARMV8 NUM_THREADS=32'
+  commands:
+    - make QUIET_MAKE=1 $COMMON_FLAGS
+    - make -C test $COMMON_FLAGS
+    - make -C ctest $COMMON_FLAGS
+    - make -C utest $COMMON_FLAGS"