From 7db0f31a497e762c1bcac37aee5723a76503845c Mon Sep 17 00:00:00 2001 From: Shaquille Soekhlal Date: Fri, 17 Apr 2020 14:33:30 +0000 Subject: [PATCH 1/3] Add 'drone.yml' --- drone.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 drone.yml diff --git a/drone.yml b/drone.yml new file mode 100644 index 0000000..230407d --- /dev/null +++ b/drone.yml @@ -0,0 +1,12 @@ +kind: pipeline +type: docker +name: default + +steps: +- name: greeting + image: archlinux + commands: + - pacman -Syu + - pacman -S cmake gcc g++ + - cmake . + - make \ No newline at end of file -- 2.45.2 From 18f79b85ddd974041746c97a87f70c104d01680e Mon Sep 17 00:00:00 2001 From: Shaquille Soekhlal Date: Fri, 17 Apr 2020 16:43:01 +0200 Subject: [PATCH 2/3] add .drone.yml --- drone.yml => .drone.yml | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename drone.yml => .drone.yml (100%) diff --git a/drone.yml b/.drone.yml similarity index 100% rename from drone.yml rename to .drone.yml -- 2.45.2 From 4a5d2f292ee28cd17b0f2143dda746ea6ddb4bdd Mon Sep 17 00:00:00 2001 From: Shaquille Soekhlal Date: Fri, 17 Apr 2020 16:55:17 +0200 Subject: [PATCH 3/3] modified: .drone.yml --- .drone.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index 230407d..acf0f4d 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,4 +9,5 @@ steps: - pacman -Syu - pacman -S cmake gcc g++ - cmake . - - make \ No newline at end of file + - make + - echo hello -- 2.45.2