mirror of
https://github.com/espressif/esp-mqtt.git
synced 2026-08-03 20:14:15 +02:00
169e1ee88d
- Makes the name of component mqtt - Updates README - Adjust CI to build for supported idf versions - Removes qemu job
28 lines
663 B
YAML
28 lines
663 B
YAML
# Note: No need to run build and test on master branch since we use FastForward merge strategy and so each merge request
|
|
# is tested and then merged onto top of master branch.
|
|
|
|
.build_template:
|
|
stage: build
|
|
tags:
|
|
- build
|
|
- internet
|
|
script:
|
|
- pip install -U 'idf-ci<1'
|
|
- idf-ci build run
|
|
|
|
build_idf_v5.3:
|
|
extends: .build_template
|
|
image: espressif/idf:release-v5.3
|
|
|
|
build_idf_v5.4:
|
|
extends: .build_template
|
|
image: espressif/idf:release-v5.4
|
|
|
|
build_idf_v5.5:
|
|
extends: .build_template
|
|
image: espressif/idf:release-v5.5
|
|
|
|
build_idf_latest:
|
|
extends: .build_template
|
|
image: espressif/idf:latest
|