From 1c3ae00f95cc570a3681213e8a773e7fd819ce8b Mon Sep 17 00:00:00 2001 From: tastytea Date: Thu, 30 Aug 2018 18:10:59 +0200 Subject: [PATCH] Added CI --- .drone.yml | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ README.md | 9 +++++++++ 2 files changed, 58 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..de79ccd --- /dev/null +++ b/.drone.yml @@ -0,0 +1,49 @@ +pipeline: + gcc8: + image: gcc:8 + pull: true + commands: + - apt-get update -q + - apt-get install -qy cmake libvsqlitepp-dev libboost-all-dev libxdg-basedir-dev + - rm -rf build && mkdir -p build && cd build + - cmake .. + - make VERBOSE=1 + - make install DESTDIR=install + gcc7: + image: gcc:7 + pull: true + commands: + - apt-get update -q + - apt-get install -qy cmake libvsqlitepp-dev libboost-all-dev libxdg-basedir-dev + - rm -rf build && mkdir -p build && cd build + - cmake .. + - make VERBOSE=1 + - make install DESTDIR=install + gcc6: + image: gcc:6 + pull: true + commands: + - apt-get update -q + - apt-get install -qy cmake libvsqlitepp-dev libboost-all-dev libxdg-basedir-dev + - rm -rf build && mkdir -p build && cd build + - cmake .. + - make VERBOSE=1 + - make install DESTDIR=install + gcc5: + image: gcc:5 + pull: true + commands: + - apt-get update -q + - apt-get install -qy cmake libvsqlitepp-dev libboost-all-dev libxdg-basedir-dev + - rm -rf build && mkdir -p build && cd build + - cmake .. + - make VERBOSE=1 + - make install DESTDIR=install + notify: + image: drillster/drone-email + pull: true + host: cryptoparty-celle.de + secrets: [ email_username, email_password ] + from: drone@tzend.de + when: + status: [ changed, failure ] diff --git a/README.md b/README.md index c8df819..68f7f82 100644 --- a/README.md +++ b/README.md @@ -56,3 +56,12 @@ cmake .. make make install ``` + +# Copyright + +```PLAIN +Copyright © 2018 tastytea . +License GPLv3: GNU GPL version 3 . +This program comes with ABSOLUTELY NO WARRANTY. This is free software, +and you are welcome to redistribute it under certain conditions. +```