From ebe799f8c014cf60cabbbee269b6a5adc720a4c4 Mon Sep 17 00:00:00 2001 From: malavan Date: Thu, 17 Jun 2021 08:44:29 +0000 Subject: [PATCH] add CI for gitlab Former-commit-id: 37ba6d28030f4cf1866cc9c182833fe247348f38 --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 000000000..0be416426 --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +build: + stage: build + script: + - make + - make install + +make-test: + stage: test + script: + - make test + +node-redis-test: + stage: test + script: + - mkdir node-redis-test + - cd node-redis-test + - git clone https://gitlab.eqalpha.com/keydb-dev/node-redis.git + - cd node-redis + - npm install + - npm run test + - cd ../.. + - rm -rf node-redis-test \ No newline at end of file