summaryrefslogtreecommitdiff
path: root/opendc-web
diff options
context:
space:
mode:
authorFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-05 14:18:15 +0200
committerFabian Mastenbroek <mail.fabianm@gmail.com>2021-05-05 14:18:15 +0200
commit664f8180425386da511436e864810535fcdc75e5 (patch)
tree500c5b8fcbffe8ad27871168756ab30a02ec9a7c /opendc-web
parent5d9cece992bf3d3100f65da0f6922fd911187500 (diff)
ci: Remove unused Gitlab and Travis CI configurations
Diffstat (limited to 'opendc-web')
-rw-r--r--opendc-web/opendc-web-api/.gitlab-ci.yml26
-rw-r--r--opendc-web/opendc-web-ui/.travis.yml9
2 files changed, 0 insertions, 35 deletions
diff --git a/opendc-web/opendc-web-api/.gitlab-ci.yml b/opendc-web/opendc-web-api/.gitlab-ci.yml
deleted file mode 100644
index d80ba836..00000000
--- a/opendc-web/opendc-web-api/.gitlab-ci.yml
+++ /dev/null
@@ -1,26 +0,0 @@
-image: "python:3.8"
-
-variables:
- PIP_CACHE_DIR: "$CI_PROJECT_DIR/.cache/pip"
-
-cache:
- paths:
- - .cache/pip
-
-stages:
- - static-analysis
- - test
-
-static-analysis:
- stage: static-analysis
- script:
- - python --version
- - pip install -r requirements.txt
- - pylint opendc
-
-test:
- stage: test
- script:
- - python --version
- - pip install -r requirements.txt
- - pytest opendc
diff --git a/opendc-web/opendc-web-ui/.travis.yml b/opendc-web/opendc-web-ui/.travis.yml
deleted file mode 100644
index c3554fe4..00000000
--- a/opendc-web/opendc-web-ui/.travis.yml
+++ /dev/null
@@ -1,9 +0,0 @@
-language: node_js
-node_js:
- - 10
-cache:
- directories:
- - node_modules
-script:
- - npm run build
- - npm test