diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..f4519c1 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,20 @@ +pipeline: + build: + image: gcc + commands: + - apt update + - apt -y install make cmake gcc python libpcre3 lippcre3-dev + - mkdir cmake-build + - cd cmake-build + - cmake .. + - make + test: + image: gcc + commands: + - apt update + - apt -y install make cmake gcc python libpcre3 lippcre3-dev + - mkdir cmake-build + - cd cmake-build + - cmake .. + - make + - make test \ No newline at end of file