Commit 4e820290 authored by Benavides Ontiveros's avatar Benavides Ontiveros
Browse files

test code run

parent 42ea373d
Pipeline #12186 failed with stages
in 21 seconds
...@@ -2,6 +2,7 @@ stages: ...@@ -2,6 +2,7 @@ stages:
- lint - lint
- test - test
- diag - diag
- generate
- build - build
- deploy - deploy
...@@ -78,6 +79,25 @@ diag: ...@@ -78,6 +79,25 @@ diag:
- if: '$CI_COMMIT_TAG' - if: '$CI_COMMIT_TAG'
when: never 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 # BUILD
# ===================================================================== # =====================================================================
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment