2019-06-29 00:39:21 +08:00
.build_template :
stage : build
image : $CI_DOCKER_REGISTRY/esp32-ci-env$BOT_DOCKER_IMAGE_TAG
tags :
- build
variables :
BATCH_BUILD : "1"
V : "0"
.build_esp_idf_unit_test_template :
extends : .build_template
artifacts :
paths :
- tools/unit-test-app/output
- components/idf_test/unit_test/TestCaseAll.yml
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-06-29 00:39:21 +08:00
only :
variables :
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_BUILD
- $BOT_LABEL_UNIT_TEST
- $BOT_LABEL_REGULAR_TEST
2019-12-20 10:52:33 +08:00
.build_ssc_template :
2019-06-29 00:39:21 +08:00
extends : .build_template
parallel : 3
artifacts :
paths :
- SSC/ssc_bin
expire_in : 1 week
variables :
2019-12-20 10:52:33 +08:00
TARGET_NAME : "ESP32"
2019-06-29 00:39:21 +08:00
only :
variables :
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_BUILD
- $BOT_LABEL_INTEGRATION_TEST
- $BOT_LABEL_REGULAR_TEST
script :
2020-06-25 12:52:00 +07:00
- ./tools/ci/retry_failed.sh git clone $SSC_REPOSITORY
2019-06-29 00:39:21 +08:00
- python $CHECKOUT_REF_SCRIPT SSC SSC
- cd SSC
2019-12-20 10:52:33 +08:00
- MAKEFLAGS= ./ci_build_ssc.sh $TARGET_NAME
build_ssc_esp32 :
extends : .build_ssc_template
variables :
TARGET_NAME : "ESP32"
build_ssc_esp32s2beta :
extends : .build_ssc_template
parallel : 2
variables :
TARGET_NAME : "ESP32S2"
2019-06-29 00:39:21 +08:00
build_esp_idf_tests_make :
extends : .build_esp_idf_unit_test_template
2020-11-04 23:32:40 +01:00
variables :
PYTHON_VER : 3
2019-06-29 00:39:21 +08:00
script :
- export EXTRA_CFLAGS=${PEDANTIC_CFLAGS}
2019-03-19 16:02:35 +08:00
- export EXTRA_CXXFLAGS=${PEDANTIC_CXXFLAGS}
2019-08-18 13:22:50 +08:00
- export IDF_TARGET=esp32
2019-06-29 00:39:21 +08:00
- cd $CI_PROJECT_DIR/tools/unit-test-app
- MAKEFLAGS= make help # make sure kconfig tools are built in single process
- make ut-clean-all-configs
- make ut-build-all-configs
- python tools/UnitTestParser.py
# Check if the tests demand Make built binaries. If not, delete them
- if [ "$UNIT_TEST_BUILD_SYSTEM" == "make" ]; then exit 0; fi
- rm -rf builds output sdkconfig
- rm $CI_PROJECT_DIR/components/idf_test/unit_test/TestCaseAll.yml
build_esp_idf_tests_cmake :
extends : .build_esp_idf_unit_test_template
2020-11-04 23:32:40 +01:00
variables :
PYTHON_VER : 3
2019-06-29 00:39:21 +08:00
script :
- export PATH="$IDF_PATH/tools:$PATH"
- export EXTRA_CFLAGS=${PEDANTIC_CFLAGS}
2019-03-19 16:02:35 +08:00
- export EXTRA_CXXFLAGS=${PEDANTIC_CXXFLAGS}
2019-06-29 00:39:21 +08:00
- cd $CI_PROJECT_DIR/tools/unit-test-app
- idf.py ut-clean-all-configs
- idf.py ut-build-all-configs
- python tools/UnitTestParser.py
# Check if the tests demand CMake built binaries. If not, delete them
- if [ "$UNIT_TEST_BUILD_SYSTEM" == "cmake" ]; then exit 0; fi
- rm -rf builds output sdkconfig
- rm $CI_PROJECT_DIR/components/idf_test/unit_test/TestCaseAll.yml
build_examples_make :
extends : .build_template
parallel : 8
# This is a workaround for a rarely encountered issue with building examples in CI.
# Probably related to building of Kconfig in 'make clean' stage
retry : 1
artifacts :
when : always
paths :
- build_examples/*/*/*/build/*.bin
- build_examples/*/*/*/sdkconfig
- build_examples/*/*/*/build/*.elf
- build_examples/*/*/*/build/*.map
- build_examples/*/*/*/build/download.config
- build_examples/*/*/*/build/bootloader/*.bin
2019-08-29 18:02:56 +08:00
- build_examples/*/*/*/*/build/partition_table/*.bin
2019-06-29 00:39:21 +08:00
- $LOG_PATH
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-06-29 00:39:21 +08:00
variables :
LOG_PATH : "$CI_PROJECT_DIR/log_examples_make"
only :
2019-07-10 17:16:53 +02:00
# Here both 'variables' and 'refs' conditions are given. They are combined with "AND" logic.
2019-06-29 00:39:21 +08:00
variables :
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_BUILD
- $BOT_LABEL_EXAMPLE_TEST
- $BOT_LABEL_REGULAR_TEST
- $BOT_LABEL_WEEKEND_TEST
2019-07-10 17:16:53 +02:00
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- triggers
- schedules
- pipelines
- web
2019-06-29 00:39:21 +08:00
script :
# it's not possible to build 100% out-of-tree and have the "artifacts"
# mechanism work, but this is the next best thing
- rm -rf build_examples
- mkdir build_examples
- cd build_examples
# build some of examples
- mkdir -p ${LOG_PATH}
- ${IDF_PATH}/tools/ci/build_examples.sh
2019-08-29 18:02:56 +08:00
# Check if the tests demand Make built binaries. If not, delete them
- if [ "$EXAMPLE_TEST_BUILD_SYSTEM" == "make" ]; then exit 0; fi
- cd ..
- rm -rf build_examples
2019-06-29 00:39:21 +08:00
# same as above, but for CMake
2019-06-27 19:11:15 +08:00
.build_examples_cmake : &build_examples_cmake
2019-06-29 00:39:21 +08:00
extends : .build_template
2021-02-04 19:33:32 +08:00
parallel : 9
2019-06-29 00:39:21 +08:00
artifacts :
when : always
paths :
2019-10-17 16:23:39 +02:00
- build_examples/list.json
- build_examples/list_job_*.json
- build_examples/*/*/*/sdkconfig
- build_examples/*/*/*/build/*.bin
- build_examples/*/*/*/build/*.elf
- build_examples/*/*/*/build/*.map
- build_examples/*/*/*/build/flasher_args.json
- build_examples/*/*/*/build/bootloader/*.bin
- build_examples/*/*/*/build/partition_table/*.bin
2019-06-29 00:39:21 +08:00
- $LOG_PATH
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-06-29 00:39:21 +08:00
variables :
2019-10-17 16:23:39 +02:00
LOG_PATH : "$CI_PROJECT_DIR/log_examples"
BUILD_PATH : "$CI_PROJECT_DIR/build_examples"
2019-06-29 00:39:21 +08:00
only :
variables :
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_BUILD
- $BOT_LABEL_EXAMPLE_TEST
- $BOT_LABEL_REGULAR_TEST
- $BOT_LABEL_WEEKEND_TEST
script :
# it's not possible to build 100% out-of-tree and have the "artifacts"
# mechanism work, but this is the next best thing
2019-10-17 16:23:39 +02:00
- mkdir -p ${BUILD_PATH}
2019-06-29 00:39:21 +08:00
- mkdir -p ${LOG_PATH}
- ${IDF_PATH}/tools/ci/build_examples_cmake.sh
2019-08-29 18:02:56 +08:00
# Check if the tests demand CMake built binaries. If not, delete them
- if [ "$EXAMPLE_TEST_BUILD_SYSTEM" == "cmake" ]; then exit 0; fi
- cd ..
- rm -rf build_examples
2019-06-29 00:39:21 +08:00
2019-06-27 19:11:15 +08:00
build_examples_cmake_esp32 :
extends : .build_examples_cmake
variables :
IDF_TARGET : esp32
2019-08-08 13:44:24 +10:00
build_examples_cmake_esp32s2 :
extends : .build_examples_cmake
variables :
IDF_TARGET : esp32s2beta
2019-06-29 00:39:21 +08:00
# If you want to add new build example jobs, please add it into dependencies of `.example_test_template`
2020-08-28 15:29:37 +08:00
.build_docs_template : &build_docs_template
2019-06-29 00:39:21 +08:00
stage : build
2020-08-28 15:29:37 +08:00
image : $ESP_IDF_DOC_ENV_IMAGE
2019-06-29 00:39:21 +08:00
tags :
- build_docs
artifacts :
when : always
paths :
2020-08-28 15:29:37 +08:00
- docs/*/*.txt
- docs/_build/*/html/*
- docs/_build/*/latex/*
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-06-29 00:39:21 +08:00
only :
variables :
- $BOT_TRIGGER_WITH_LABEL == null
- $BOT_LABEL_BUILD
- $BOT_LABEL_BUILD_DOCS
- $BOT_LABEL_REGULAR_TEST
2020-08-28 15:29:37 +08:00
dependencies : [ ]
2019-06-29 00:39:21 +08:00
script :
2020-08-28 15:29:37 +08:00
# Active python 3.6.10 env as this is where Sphinx is installed
- source /opt/pyenv/activate && pyenv global 3.6.10
# Setup a build dir with both languages to simplify deployment
- mkdir -p docs/_build/$DOCLANG
- cd docs/$DOCLANG
2019-06-29 00:39:21 +08:00
- make gh-linkcheck
- make html
2019-09-13 14:02:58 +10:00
- ../check_doc_warnings.sh
2020-08-28 15:29:37 +08:00
- make latexpdf LATEXMKOPTS="--f --interaction=nonstopmode --quiet --outdir=build"
2019-09-13 14:02:58 +10:00
- ../check_doc_warnings.sh
2020-08-28 15:29:37 +08:00
- mv -f _build/* ../_build/$DOCLANG
build_docs_en :
extends : .build_docs_template
variables :
DOCLANG : "en"
build_docs_zh_CN :
extends : .build_docs_template
variables :
DOCLANG : "zh_CN"
2019-06-29 00:39:21 +08:00
test_build_system :
extends : .build_template
script :
- ${IDF_PATH}/tools/ci/test_configure_ci_environment.sh
- rm -rf test_build_system
- mkdir test_build_system
- cd test_build_system
- ${IDF_PATH}/tools/ci/test_build_system.sh
test_build_system_cmake :
extends : .build_template
script :
- ${IDF_PATH}/tools/ci/test_configure_ci_environment.sh
- rm -rf test_build_system
- mkdir test_build_system
- cd test_build_system
- ${IDF_PATH}/tools/ci/test_build_system_cmake.sh
2019-07-08 18:42:46 +02:00
2019-10-30 15:00:18 +01:00
test_build_system_cmake_macos :
extends : .macos_build_template
only :
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- schedules
- triggers
- pipelines
- web
variables :
- $CI_PIPELINE_SOURCE != "push" && $BOT_LABEL_MACOS_TEST != null
- $CI_PIPELINE_SOURCE == "push"
script :
- ${IDF_PATH}/tools/ci/test_configure_ci_environment.sh
- rm -rf test_build_system
- mkdir test_build_system
- cd test_build_system
- ${IDF_PATH}/tools/ci/test_build_system_cmake.sh
2019-07-08 18:42:46 +02:00
build_docker :
stage : build
image : espressif/docker-builder:1
tags :
- build_docker_amd64_brno
only :
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- schedules
variables :
DOCKER_TMP_IMAGE_NAME : "idf_tmp_image"
before_script : [ ]
script :
2020-09-11 16:14:15 +02:00
- export LOCAL_CI_REPOSITORY_URL=$CI_REPOSITORY_URL
- if [ -n "$LOCAL_GITLAB_HTTPS_HOST" ]; then export LOCAL_CI_REPOSITORY_URL="https://gitlab-ci-token:${CI_JOB_TOKEN}@${LOCAL_GITLAB_HTTPS_HOST}/${CI_PROJECT_PATH}"; fi
- echo "Using repository at $LOCAL_CI_REPOSITORY_URL"
- export DOCKER_BUILD_ARGS="--build-arg IDF_CLONE_URL=${LOCAL_CI_REPOSITORY_URL} --build-arg IDF_CLONE_BRANCH_OR_TAG=${CI_COMMIT_REF_NAME} --build-arg IDF_CHECKOUT_REF=${CI_COMMIT_TAG:-$CI_COMMIT_SHA}"
2019-07-08 18:42:46 +02:00
# Build
- docker build --tag ${DOCKER_TMP_IMAGE_NAME} ${DOCKER_BUILD_ARGS} tools/docker/
# We can't mount $PWD/examples/get-started/blink into the container, see https://gitlab.com/gitlab-org/gitlab-ce/issues/41227.
# The workaround mentioned there works, but leaves around directories which need to be cleaned up manually.
# Therefore, build a copy of the example located inside the container.
- docker run --rm --workdir /opt/esp/idf/examples/get-started/blink ${DOCKER_TMP_IMAGE_NAME} idf.py build
2019-07-18 17:34:36 +02:00
build_idf_exe :
stage : build
image : $CI_DOCKER_REGISTRY/esp32-toolchain-win-cross
tags :
- build
only :
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- schedules
before_script : [ ]
artifacts :
paths :
- tools/windows/idf_exe/build/idf-exe-v*.zip
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-07-18 17:34:36 +02:00
script :
- cd tools/windows/idf_exe/
- mkdir build
- cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=../toolchain-i686-w64-mingw32.cmake -DCMAKE_BUILD_TYPE=Release ..
- cmake --build .
build_cmdlinerunner :
stage : build
image : $CI_DOCKER_REGISTRY/esp32-toolchain-win-cross
tags :
- build
only :
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- schedules
before_script : [ ]
artifacts :
paths :
- tools/windows/tool_setup/cmdlinerunner/build/cmdlinerunner.dll
2019-12-12 09:38:04 +11:00
expire_in : 4 days
2019-07-18 17:34:36 +02:00
script :
- cd tools/windows/tool_setup/cmdlinerunner
- mkdir build
- cd build
- cmake -DCMAKE_TOOLCHAIN_FILE=../toolchain-i686-w64-mingw32.cmake -DCMAKE_BUILD_TYPE=Release ..
- cmake --build .
build_installer :
# using a different stage here to be able to use artifacts from build_cmdlinerunner job
stage : host_test
image : $CI_DOCKER_REGISTRY/wine-innosetup:1
tags :
- build
only :
refs :
- master
- /^release\/v/
- /^v\d+\.\d+(\.\d+)?($|-)/
- schedules
dependencies :
- build_cmdlinerunner
before_script : [ ]
script :
- cd tools/windows/tool_setup/
2019-09-23 05:42:01 +02:00
- ./build_installer.sh