From b07ea8fe9c986eae23604031c58296efb7d80c8f Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Tue, 11 Feb 2020 13:25:10 -0800 Subject: [PATCH] Add initial drone configuration file --- .drone.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .drone.yml diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..09810d0 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,10 @@ +kind: pipeline +type: docker +name: default + +steps: + - name: test-compiler + image: gcc + commands: + - cd code/compiler/09 + - mkdir build && cd build