From 43a37ee0c0f82af99dd1773b3897a0cd256ffaea Mon Sep 17 00:00:00 2001 From: Florian Ludwig Date: Sun, 21 Apr 2019 18:11:47 +0200 Subject: [PATCH] add gitlab-ci.yml --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 00000000..ada4998b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,11 @@ +image: python:2.7 + +stages: + - test + +.job_template: &pio_run + script: + - "platformio ci --lib='.' --board=uno --board=teensy31 --board=nodemcuv2 $PLATFORMIO_CI_EXTRA_ARGS" + +before_script: + - "pip install -U platformio" \ No newline at end of file