From b4c260e2015ea62abe5c3cd83128905c6028dbe0 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Wed, 2 Feb 2022 17:19:39 -0800 Subject: [PATCH] updating gitignore to ignore syncthign files --- .gitignore | 2 +- ....sync-conflict-20220202-171850-Z6PPTMH.yml | 37 ------------------- 2 files changed, 1 insertion(+), 38 deletions(-) delete mode 100755 .gitlab-ci.sync-conflict-20220202-171850-Z6PPTMH.yml diff --git a/.gitignore b/.gitignore index ccb2f46d..59d20d85 100755 --- a/.gitignore +++ b/.gitignore @@ -4,4 +4,4 @@ dragon_bot_env __pycache__ *.csv *env -.syncthing* +*sync* \ No newline at end of file diff --git a/.gitlab-ci.sync-conflict-20220202-171850-Z6PPTMH.yml b/.gitlab-ci.sync-conflict-20220202-171850-Z6PPTMH.yml deleted file mode 100755 index 11e8acd8..00000000 --- a/.gitlab-ci.sync-conflict-20220202-171850-Z6PPTMH.yml +++ /dev/null @@ -1,37 +0,0 @@ -image: docker:19.03.12-dind -services: - - name: docker:dind - entrypoint: ["env", "-u", "DOCKER_HOST"] - command: ["dockerd-entrypoint.sh"] -variables: - DOCKER_TLS_CERTDIR: "" - DOCKER_HOST: tcp://docker:2375/ - DOCKER_DRIVER: overlay2 - -stages: - - test - - deploy - -lint_python_on_merge_request: - image: python:alpine - stage: test - script: - - echo "Linting Python code" - - pip install --upgrade -q pip && pip install -q black && black --fast --check . - rules: - - changes: - - app/* - -build_and_push_container: - stage: deploy - script: - - echo "Wait for Docker daemon at tcp://localhost:2375" - - while ! nc -z localhost 2375; do sleep 0.1; done # Wait until docker socket is available - - docker login -u ldooks -p $DOCKER_ACCESS_TOKEN - - docker build -t ldooks/dragon-bot:$CI_PIPELINE_ID -t ldooks/dragon-bot:latest . - - docker push ldooks/dragon-bot:latest - - docker push ldooks/dragon-bot:$CI_PIPELINE_ID - rules: - - changes: - - app/* - - Dockerfile