[Git][ghc/ghc][wip/gitlab-inputs] wip1

Zubin pushed to branch wip/gitlab-inputs at Glasgow Haskell Compiler / GHC Commits: 8894740c by Zubin Duggal at 2025-10-08T16:46:27+05:30 wip1 - - - - - 1 changed file: - .gitlab-ci.yml Changes: ===================================== .gitlab-ci.yml ===================================== @@ -202,6 +202,7 @@ workflow: - if: '$RELEASE_JOB == "yes"' .full-ci: &full-ci + - if: '"$[[ inputs.full_ci ]]" == "yes"' - if: '$CI_MERGE_REQUEST_LABELS =~ /.*full-ci.*/' - if: '$CI_MERGE_REQUEST_LABELS =~ /.*marge_bot_batch_merge_job.*/' - if: '$CI_COMMIT_BRANCH == "master"' @@ -266,6 +267,26 @@ not-interruptible: # Validate jobs ############################################################ +# Debug job to check input interpolation +debug-inputs: + stage: tool-lint + image: "debian:12" + variables: + GIT_STRATEGY: none + tags: + - lint + script: + - echo "=== DEBUG INPUT VALUES ===" + - echo "full_ci input interpolated:" "$[[ inputs.full_ci ]]" + - echo "RELEASE_JOB variable:" "$RELEASE_JOB" + - echo "NIGHTLY variable:" "$NIGHTLY" + - echo "ONLY_JOBS variable:" "$ONLY_JOBS" + - echo "CI_MERGE_REQUEST_LABELS:" "$CI_MERGE_REQUEST_LABELS" + - echo "CI_COMMIT_BRANCH:" "$CI_COMMIT_BRANCH" + - echo "Test condition:" "$[[ inputs.full_ci ]]" == "yes" + rules: + - when: always + # These jobs are generated by running the ./.gitlab/generate_jobs script include: '.gitlab/jobs.yaml' View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8894740c8f1af12bb4b0aa79f1cf238a... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/8894740c8f1af12bb4b0aa79f1cf238a... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Zubin (@wz1000)