Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
software-project-WS25
Reddit Team
Commits
4e820290
Commit
4e820290
authored
Nov 28, 2025
by
Benavides Ontiveros
Browse files
test code run
parent
42ea373d
Pipeline
#12186
failed with stages
in 21 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
4e820290
...
...
@@ -2,6 +2,7 @@ stages:
-
lint
-
test
-
diag
-
generate
-
build
-
deploy
...
...
@@ -78,6 +79,25 @@ diag:
-
if
:
'
$CI_COMMIT_TAG'
when
:
never
# =====================================================================
# GENERATE FILES
# =====================================================================
generate
:
stage
:
generate
image
:
python:3.10
tags
:
[
"
ubuntu"
,
"
vm"
]
before_script
:
-
pip install -r requirements.txt
# optional: install dependencies
script
:
-
echo "Running Python script to generate files..."
-
mkdir -p generated
# ensure folder exists
-
python app.py
# replace with your script
artifacts
:
paths
:
-
generated/
# folder with generated files
rules
:
-
if
:
'
$CI_COMMIT_BRANCH'
# =====================================================================
# BUILD
# =====================================================================
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment