Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
I
IRISCC-Dashboard
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
KIT
imkasf-top
IRISCC-Dashboard
Commits
7ad6b5ae
Commit
7ad6b5ae
authored
3 days ago
by
Florian Obersteiner
Browse files
Options
Downloads
Patches
Plain Diff
prepare deploy
parent
a969d64d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!10
prepare containerization, layout tweaks
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+27
-3
27 additions, 3 deletions
.gitlab-ci.yml
with
27 additions
and
3 deletions
.gitlab-ci.yml
+
27
−
3
View file @
7ad6b5ae
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
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment