From a60903527a2398e68748eea5a4c31cfeb74c7ff2 Mon Sep 17 00:00:00 2001 From: Daniel Bauer <daniel.j.bauer@fau.de> Date: Tue, 1 Apr 2025 14:23:56 +0200 Subject: [PATCH] [ci] save generated operators as artifacts --- .gitlab-ci.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index b0f059da..57f8c6b6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -25,6 +25,9 @@ generate-child-pipeline: - rm -rf ../operators/* - echo \$OPERATOR_BASE_NAME - python3 generate.py -o ../operators ../operators-\$OPERATOR_BASE_NAME.toml --processes 8 + artifacts: + paths: + - operators/\$OPERATOR_BASE_NAME tags: - docker parallel: @@ -38,6 +41,14 @@ generate-child-pipeline: - OPERATOR_BASE_NAME: $OP_NAME EOF done + - | + cat >> child-pipeline.yml << EOF + + file-mr: + stage: file-mr + script: + - git status + EOF artifacts: paths: - child-pipeline.yml -- GitLab