mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-09-15 21:50:06 +00:00
14 lines
393 B
YAML
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"
|