From c6da061ef8433ff37ff1f7bdb3fba252644bb91b Mon Sep 17 00:00:00 2001 From: Hannes Feldt <feldt@astron.nl> Date: Tue, 11 Mar 2025 15:04:52 +0100 Subject: [PATCH] update --- .gitlab-ci.yml | 5 +++-- docker/ci-runner/Dockerfile | 5 ++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 003be8f..0388ead 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -16,10 +16,11 @@ build-template: # Bootstrap Cookiecutter template to test provided ci pipeline template script: - python --version # For debugging + - git config --global user.email "ci-runner@example.com" + - git config --global user.name "CI Runner" + - git config --global init.defaultBranch main - cookiecutter --no-input --overwrite-if-exists --output-dir . . - cd my_awesome_app - - git config user.email "ci-runner@example.com" - - git config user.name "CI Runner" - git init - source ./setup.sh - ls -lah diff --git a/docker/ci-runner/Dockerfile b/docker/ci-runner/Dockerfile index 497b89a..4d06f79 100644 --- a/docker/ci-runner/Dockerfile +++ b/docker/ci-runner/Dockerfile @@ -1,5 +1,4 @@ -FROM python:3.12 +FROM python:3.13 RUN python -m pip install --upgrade pip -RUN python -m pip install --upgrade cookiecutter tox twine cibuildwheel==2.13.1 cookiecutter -RUN curl -sSL https://get.docker.com/ | sh +RUN python -m pip install --upgrade cookiecutter tox twine -- GitLab