Files
esp-mqtt/.gitlab/ci/prebuild_report.yml

14 lines
393 B
YAML

generate_prebuild_report:
stage: pre_check
image: espressif/idf:latest
tags: [build]
artifacts:
paths:
- prebuild_report.html
expire_in: 1 week
when: always
script:
- pip install -U idf-ci
- idf-ci build collect --format html -o prebuild_report.html
- echo "Report generated at ${CI_PROJECT_URL}/-/jobs/${CI_JOB_ID}/artifacts/file/prebuild_report.html"