remove git fetch

This commit is contained in:
Robert Kaussow 2023-12-23 15:02:49 +01:00
parent cc6da552f1
commit 9ac29117c7
Signed by: xoxys
GPG Key ID: 4E692A2EAECC03C0
5 changed files with 0 additions and 10 deletions

View File

@ -9,7 +9,6 @@ steps:
- name: build
image: docker.io/library/python:3.12
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry build

View File

@ -9,7 +9,6 @@ steps:
- name: build
image: docker.io/library/python:3.12
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry build
@ -21,7 +20,6 @@ steps:
- name: changelog
image: quay.io/thegeeklab/git-sv
commands:
- git fetch --depth=2147483647
- git sv current-version
- git sv release-notes -t ${CI_COMMIT_TAG:-next} -o CHANGELOG.md
- cat CHANGELOG.md
@ -48,7 +46,6 @@ steps:
- source: pypi_username
target: POETRY_HTTP_BASIC_PYPI_USERNAME
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry publish -n
when:

View File

@ -39,9 +39,6 @@ steps:
- name: build
image: quay.io/thegeeklab/hugo:0.115.2
commands:
# Fetch is used to get the full git history.
# Required for Hugos git metadata integration.
- git fetch --depth=2147483647
- hugo --panicOnWarning -s docs/
- name: beautify

View File

@ -9,7 +9,6 @@ steps:
- name: check-format
image: docker.io/library/python:3.12
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run ruff format --check --diff ./${CI_REPO_NAME//-/}
@ -19,7 +18,6 @@ steps:
- name: check-coding
image: docker.io/library/python:3.12
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run ruff ./${CI_REPO_NAME//-/}

View File

@ -17,7 +17,6 @@ steps:
- name: pytest
image: docker.io/library/python:${PYTHON_VERSION}
commands:
- git fetch --depth=2147483647
- pip install poetry poetry-dynamic-versioning -qq
- poetry install
- poetry run pytest --cov-append