Skip to content
Snippets Groups Projects
Commit 7ad6b5ae authored by Florian Obersteiner's avatar Florian Obersteiner :octopus:
Browse files

prepare deploy

parent a969d64d
No related branches found
No related tags found
1 merge request!10prepare containerization, layout tweaks
stages:
- test
# - build_and_deploy
variables:
UV_VERSION: 0.6
......@@ -9,19 +10,19 @@ variables:
# so we need to copy instead of using hard links.
UV_LINK_MODE: copy
# Only run the pipeline for tag pushes matching the pattern "v*"
# Only run the pipeline for tag pushes matching the pattern "v*-pre"
workflow:
rules:
- if: $CI_COMMIT_TAG =~ /^v.*-pre/
# Run tests for your Python application
# Run tests...
test:
stage: test
# image: python:3.12
# script:
# - pip install pip --upgrade
# - pip install -r requirements.txt
# - pytest . -v
# - python -m pytest . -v
image: ghcr.io/astral-sh/uv:$UV_VERSION-python$PYTHON_VERSION-$BASE_LAYER
script:
- uv sync
......@@ -29,3 +30,26 @@ test:
- uv cache prune --ci
only:
- tags
#
#
# # Build and deploy the Docker container directly on the server
# build_and_deploy:
# stage: build_and_deploy
# script:
# - echo "Starting build and deployment of $APP_NAME version $CI_COMMIT_TAG"
# # Build the Docker image locally
# - docker build -t $APP_NAME:$CI_COMMIT_TAG .
# # Stop and remove existing container if it exists
# - |
# if docker ps -a | grep -q $APP_NAME; then
# docker stop $APP_NAME
# docker rm $APP_NAME
# fi
# # Start the new container
# - docker run -d --name $APP_NAME -p $HOST_PORT:$CONTAINER_PORT --restart unless-stopped $APP_NAME:$CI_COMMIT_TAG
# - echo "Build and deployment complete!"
# only:
# - tags
# # This ensures the job runs on the specific runner on your server
# tags:
# - deployment-server
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment