From 7e7de9fd762e7108c1b372deabfd0be5ed5579e8 Mon Sep 17 00:00:00 2001 From: Qian Hong Date: Mon, 8 Jan 2018 10:53:58 +1100 Subject: [PATCH] Add TeaCI continuous integration configuration. --- .drone.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 00000000..9b0e28c9 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,17 @@ +build: + image: teaci/msys$$arch + pull: true + shell: $$prefix$$arch + commands: + - ./bootstrap + - ./configure + - make + - make check + +matrix: + prefix: + - msys + - mingw + arch: + - 32 + - 64