From 664f8180425386da511436e864810535fcdc75e5 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 5 May 2021 14:18:15 +0200 Subject: ci: Remove unused Gitlab and Travis CI configurations --- opendc-web/opendc-web-api/.gitlab-ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 opendc-web/opendc-web-api/.gitlab-ci.yml (limited to 'opendc-web/opendc-web-api') 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 -- cgit v1.2.3 From 3c805a50ca710e123aa18ad1bfa01ea4f1ee40d2 Mon Sep 17 00:00:00 2001 From: Fabian Mastenbroek Date: Wed, 5 May 2021 14:28:20 +0200 Subject: build: Update Docker ignores to prevent unnecessary builds This changes updates the .dockerignore files in the repository in order to prevent building when not necessary. --- opendc-web/opendc-web-api/.dockerignore | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 opendc-web/opendc-web-api/.dockerignore (limited to 'opendc-web/opendc-web-api') diff --git a/opendc-web/opendc-web-api/.dockerignore b/opendc-web/opendc-web-api/.dockerignore new file mode 100644 index 00000000..06d67de9 --- /dev/null +++ b/opendc-web/opendc-web-api/.dockerignore @@ -0,0 +1,8 @@ +Dockerfile + +.idea/ +**/out +*.iml +.idea_modules/ + +.pytest_cache -- cgit v1.2.3