From e9acc2081c0b6fbc1442d7e373203fda9015e06e Mon Sep 17 00:00:00 2001 From: Morgan Allen Date: Sat, 28 Jul 2018 13:57:07 -0700 Subject: [PATCH] gitlab ci --- .gitlab-ci.yml | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..c6c6634 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,25 @@ +image: node:latest + +cache: + paths: + - node_modules/ + +all_tests: + stage: test + script: + - make -f test/lora32/Makefile + - npm install --unsafe-perm + - npm test + artifacts: + paths: + - public + +pages: + stage: deploy + dependencies: + - all_tests + script: + - echo "Echo" + artifacts: + paths: + - public