mirror of
https://github.com/espressif/esp-phy-lib.git
synced 2026-09-07 18:59:59 +00:00
15 lines
436 B
YAML
Executable File
15 lines
436 B
YAML
Executable File
stages:
|
|
- check
|
|
|
|
check_lib_reversion:
|
|
stage: check
|
|
except:
|
|
- master
|
|
- /^release\/v/
|
|
image: $CI_DOCKER_REGISTRY/esp32-ci-env
|
|
variables:
|
|
GIT_SUBMODULE_STRATEGY: none
|
|
script:
|
|
- for dir in esp32 esp32s2 esp32s3; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w printf | wc -l) -eq 0; done;
|
|
- for dir in esp32 esp32s2 esp32s3; do test $(xtensa-esp32-elf-nm $dir/*.a | grep -w ets_printf | wc -l) -eq 0; done;
|