2024-05-18 19:00:08 +08:00
|
|
|
generate_failed_jobs_report:
|
|
|
|
stage: post_deploy
|
|
|
|
tags: [build, shiny]
|
|
|
|
image: $ESP_ENV_IMAGE
|
|
|
|
when: always
|
2024-07-02 17:38:41 +08:00
|
|
|
dependencies: [] # Do not download artifacts from the previous stages
|
2024-05-18 19:00:08 +08:00
|
|
|
artifacts:
|
|
|
|
expire_in: 1 week
|
|
|
|
when: always
|
|
|
|
paths:
|
|
|
|
- job_report.html
|
|
|
|
script:
|
|
|
|
- python tools/ci/dynamic_pipelines/scripts/generate_report.py --report-type job
|
2025-02-18 16:26:08 +08:00
|
|
|
|
|
|
|
sync_support_status:
|
|
|
|
stage: post_deploy
|
|
|
|
extends:
|
|
|
|
- .rules:sync_support_status
|
|
|
|
needs:
|
|
|
|
- push_to_github
|
|
|
|
image: $ESP_ENV_IMAGE
|
|
|
|
tags: [ brew, github_sync ]
|
|
|
|
script:
|
|
|
|
- curl --fail --request POST --form token="$IDF_STATUS_TRIG_TOKEN" --form ref="$IDF_STATUS_BRANCH" --form "variables[UPLOAD_TO_S3]=true" "$IDF_STATUS_TRIG_URL"
|