Skip to content

Commit 97a6c9c

Browse files
committed
ci: add caveats to non github cicd attempts
1 parent 5ff614d commit 97a6c9c

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

{{cookiecutter.project_name}}/{% if cookiecutter.repository_provider == 'bitbucket' %}bitbucket-pipelines.yml{% endif %}

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# bitbucket-pipelines.yml
22
# See https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-bitbucket-pipelines/
3+
# This is currently untested serves as a best guess for an equivalent pipeline
34

45
image: ghcr.io/astral-sh/uv:latest-python3.13-bookworm-slim
56

@@ -71,7 +72,7 @@ pipelines:
7172
after-script:
7273
- echo "Security checks completed"
7374

74-
# Parallel typecheck execution across Python versions
75+
# Parallel typecheck execution across Python versions
7576
- parallel:
7677
steps:
7778
- step:
@@ -91,7 +92,7 @@ pipelines:
9192
image: ghcr.io/astral-sh/uv:latest-python3.10-bookworm-slim
9293
caches:
9394
- uv
94-
- pip
95+
- pip
9596
script:
9697
- export UV_CACHE_DIR=.uv-cache
9798
- export UV_LINK_MODE=copy
@@ -289,7 +290,7 @@ pipelines:
289290
- uvx nox -s security-python
290291
- uv cache prune --ci
291292

292-
# Parallel typecheck execution across Python versions
293+
# Parallel typecheck execution across Python versions
293294
- parallel:
294295
steps:
295296
- step:
@@ -309,7 +310,7 @@ pipelines:
309310
image: ghcr.io/astral-sh/uv:latest-python3.10-bookworm-slim
310311
caches:
311312
- uv-deps
312-
- pip-deps
313+
- pip-deps
313314
script:
314315
- export UV_CACHE_DIR=.uv-cache
315316
- export UV_LINK_MODE=copy
@@ -619,4 +620,4 @@ pipelines:
619620
- export UV_CACHE_DIR=.uv-cache
620621
- export UV_LINK_MODE=copy
621622
- uvx nox -s publish-python
622-
- uv cache prune --ci
623+
- uv cache prune --ci

{{cookiecutter.project_name}}/{% if cookiecutter.repository_provider == 'gitlab' %}.gitlab-ci.yml{% endif %}

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# .gitlab-ci.yml
22
# See https://docs.gitlab.com/ee/ci/yaml/
3+
# This is currently untested and serves as a best guess for what might be an equivalent pipeline
34

45
# Global settings
56
image: ghcr.io/astral-sh/uv:latest-python3.13-bookworm-slim

0 commit comments

Comments
 (0)