mirror of
				https://gitea.publichub.eu/oscar.krause/fastapi-dls.git
				synced 2025-11-04 10:46:14 +00:00 
			
		
		
		
	code styling
This commit is contained in:
		@@ -1,6 +1,20 @@
 | 
				
			|||||||
cache:
 | 
					cache:
 | 
				
			||||||
  key: one-key-to-rule-them-all
 | 
					  key: one-key-to-rule-them-all
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					build:docker:
 | 
				
			||||||
 | 
					  image: docker:dind
 | 
				
			||||||
 | 
					  interruptible: true
 | 
				
			||||||
 | 
					  stage: build
 | 
				
			||||||
 | 
					  rules:
 | 
				
			||||||
 | 
					    - if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
 | 
				
			||||||
 | 
					  tags: [ docker ]
 | 
				
			||||||
 | 
					  before_script:
 | 
				
			||||||
 | 
					    - echo "COMMIT=${CI_COMMIT_SHA}" >> version.env  # COMMIT=`git rev-parse HEAD`
 | 
				
			||||||
 | 
					  script:
 | 
				
			||||||
 | 
					    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
 | 
				
			||||||
 | 
					    - docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
 | 
				
			||||||
 | 
					    - docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
build:debian:
 | 
					build:debian:
 | 
				
			||||||
  # debian:bullseye-slim
 | 
					  # debian:bullseye-slim
 | 
				
			||||||
  image: debian:bookworm-slim  # just to get "python3-jose" working
 | 
					  image: debian:bookworm-slim  # just to get "python3-jose" working
 | 
				
			||||||
@@ -28,20 +42,6 @@ build:debian:
 | 
				
			|||||||
    paths:
 | 
					    paths:
 | 
				
			||||||
      - build/build.deb
 | 
					      - build/build.deb
 | 
				
			||||||
 | 
					
 | 
				
			||||||
build:docker:
 | 
					 | 
				
			||||||
  image: docker:dind
 | 
					 | 
				
			||||||
  interruptible: true
 | 
					 | 
				
			||||||
  stage: build
 | 
					 | 
				
			||||||
  rules:
 | 
					 | 
				
			||||||
    - if: $CI_COMMIT_BRANCH != $CI_DEFAULT_BRANCH
 | 
					 | 
				
			||||||
  tags: [ docker ]
 | 
					 | 
				
			||||||
  before_script:
 | 
					 | 
				
			||||||
    - echo "COMMIT=${CI_COMMIT_SHA}" >> version.env  # COMMIT=`git rev-parse HEAD`
 | 
					 | 
				
			||||||
  script:
 | 
					 | 
				
			||||||
    - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
 | 
					 | 
				
			||||||
    - docker build . --tag ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
 | 
					 | 
				
			||||||
    - docker push ${CI_REGISTRY}/${CI_PROJECT_PATH}/${CI_BUILD_REF_NAME}:${CI_BUILD_REF}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
test:
 | 
					test:
 | 
				
			||||||
  image: python:3.10-slim-bullseye
 | 
					  image: python:3.10-slim-bullseye
 | 
				
			||||||
  stage: test
 | 
					  stage: test
 | 
				
			||||||
@@ -113,8 +113,8 @@ deploy:debian:
 | 
				
			|||||||
  # doc: https://git.collinwebdesigns.de/help/user/packages/debian_repository/index.md#install-a-package
 | 
					  # doc: https://git.collinwebdesigns.de/help/user/packages/debian_repository/index.md#install-a-package
 | 
				
			||||||
  image: debian:bookworm-slim
 | 
					  image: debian:bookworm-slim
 | 
				
			||||||
  stage: deploy
 | 
					  stage: deploy
 | 
				
			||||||
#  rules:
 | 
					  #  rules:
 | 
				
			||||||
#    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
 | 
					  #    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH
 | 
				
			||||||
  needs:
 | 
					  needs:
 | 
				
			||||||
    - job: build:debian
 | 
					    - job: build:debian
 | 
				
			||||||
      artifacts: true
 | 
					      artifacts: true
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user