115 lines
3.5 KiB
YAML
115 lines
3.5 KiB
YAML
apiVersion: tekton.dev/v1beta1
|
|
kind: Task
|
|
metadata:
|
|
name: pylint
|
|
spec:
|
|
params:
|
|
- name: subdirectory
|
|
type: string
|
|
description: Subdirectory within the repo where the source code is located
|
|
default: ""
|
|
|
|
- name: python-version
|
|
type: string
|
|
description: Python version to use (e.g., 3.9, 3.11)
|
|
default: "3.9"
|
|
|
|
- name: pylint-args
|
|
type: string
|
|
description: Additional arguments for pylint (e.g., --fail-under=8)
|
|
default: ""
|
|
|
|
- name: pypi-username
|
|
type: string
|
|
description: PyPI username (fallback)
|
|
default: ""
|
|
|
|
- name: pypi-password
|
|
type: string
|
|
description: PyPI password or token (fallback)
|
|
default: ""
|
|
|
|
workspaces:
|
|
- name: source
|
|
description: Workspace containing the cloned Git repository from git-clone-checkout
|
|
|
|
- name: pypi-auth
|
|
optional: true
|
|
description: |
|
|
A workspace containing authentication credentials for a private PyPI repository.
|
|
Should include:
|
|
- username
|
|
- password
|
|
|
|
steps:
|
|
- name: install-dependencies
|
|
image: python:$(params.python-version)-slim
|
|
workingDir: /workspace/source
|
|
script: |
|
|
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$(params.subdirectory)" ]; then
|
|
cd "$(params.subdirectory)"
|
|
fi
|
|
|
|
pip install --upgrade pip --root-user-action=ignore
|
|
|
|
PYPI_USER="$(params.pypi-username)"
|
|
PYPI_PASS="$(params.pypi-password)"
|
|
|
|
if [ -f /workspace/pypi-auth/username ]; then
|
|
PYPI_USER=$(cat /workspace/pypi-auth/username)
|
|
fi
|
|
if [ -f /workspace/pypi-auth/password ]; then
|
|
PYPI_PASS=$(cat /workspace/pypi-auth/password)
|
|
fi
|
|
|
|
if [ -f pyproject.toml ]; then
|
|
echo "[INFO] Poetry project detected"
|
|
pip install poetry tomli --root-user-action=ignore
|
|
poetry config virtualenvs.in-project true
|
|
|
|
REPO_NAME=$(python3 -c 'import tomli; print(tomli.load(open("pyproject.toml", "rb"))["tool"]["poetry"]["source"][0]["name"])')
|
|
REPO_URL=$(python3 -c 'import tomli; print(tomli.load(open("pyproject.toml", "rb"))["tool"]["poetry"]["source"][0]["url"])')
|
|
|
|
echo "[INFO] Configuring poetry source '$REPO_NAME': $REPO_URL"
|
|
poetry config repositories."$REPO_NAME" "$REPO_URL"
|
|
poetry config http-basic."$REPO_NAME" "$PYPI_USER" "$PYPI_PASS"
|
|
|
|
poetry install --no-root
|
|
poetry add pylint --group dev
|
|
elif [ -f requirements.txt ]; then
|
|
echo "[INFO] Pip project detected"
|
|
pip install -r requirements.txt --root-user-action=ignore
|
|
pip install pylint --root-user-action=ignore
|
|
else
|
|
echo "[INFO] No dependency file found, installing pylint only"
|
|
pip install pylint --root-user-action=ignore
|
|
fi
|
|
|
|
- name: run-lint
|
|
image: python:$(params.python-version)-slim
|
|
workingDir: /workspace/source
|
|
script: |
|
|
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
if [ -n "$(params.subdirectory)" ]; then
|
|
cd "$(params.subdirectory)"
|
|
fi
|
|
|
|
if [ -f pyproject.toml ]; then
|
|
poetry run pylint $(params.pylint-args) .
|
|
else
|
|
pylint $(params.pylint-args) .
|
|
fi
|
|
onError: continue # 린트 실패해도 파이프라인 중단하지 않음
|
|
|
|
- name: check-results
|
|
image: ubuntu
|
|
workingDir: /workspace/source
|
|
script: |
|
|
#!/usr/bin/env bash
|
|
echo "✅ Pylint execution completed."
|