2019-06-28 12:39:21 -04:00
.build_template :
stage : build
2023-09-26 07:24:26 -04:00
extends :
2023-12-18 09:29:58 -05:00
- .after_script:build:ccache:upload-when-fail
2021-05-26 04:44:20 -04:00
image : $ESP_ENV_IMAGE
2019-06-28 12:39:21 -04:00
tags :
- build
2023-01-16 05:23:57 -05:00
# build only on shiny servers since shiny storage server is at the same location
- shiny
2019-06-28 12:39:21 -04:00
variables :
2021-11-05 10:26:13 -04:00
# Enable ccache for all build jobs. See configure_ci_environment.sh for more ccache related settings.
IDF_CCACHE_ENABLE : "1"
2020-11-19 02:08:53 -05:00
dependencies : [ ]
2019-06-28 12:39:21 -04:00
2022-08-26 00:24:19 -04:00
.build_cmake_template :
2021-11-19 03:11:47 -05:00
extends :
- .build_template
2023-09-26 07:24:26 -04:00
- .before_script:build
2023-08-31 00:55:28 -04:00
- .after_script:build:ccache
2022-08-26 00:24:19 -04:00
dependencies : # set dependencies to null to avoid missing artifacts issue
2021-11-19 03:11:47 -05:00
needs :
- job : fast_template_app
artifacts : false
2023-11-01 07:43:19 -04:00
- pipeline_variables
2021-11-19 03:11:47 -05:00
artifacts :
paths :
2023-08-31 00:55:28 -04:00
# The other artifacts patterns are defined under tools/ci/artifacts_handler.py
# Now we're uploading/downloading the binary files from our internal storage server
#
# keep the log file to help debug
2022-07-12 22:34:02 -04:00
- "**/build*/build_log.txt"
2023-08-31 00:55:28 -04:00
# keep the size info to help track the binary size
2022-08-26 00:24:19 -04:00
- size_info.txt
2023-08-31 00:55:28 -04:00
- "**/build*/size.json"
2022-08-26 00:24:19 -04:00
script :
2023-05-23 22:53:57 -04:00
# CI specific options start from "--parallel-count xxx". could ignore when running locally
2022-08-26 00:24:19 -04:00
- run_cmd python tools/ci/ci_build_apps.py $TEST_DIR -v
-t $IDF_TARGET
--copy-sdkconfig
--parallel-count ${CI_NODE_TOTAL:-1}
--parallel-index ${CI_NODE_INDEX:-1}
--extra-preserve-dirs
examples/bluetooth/esp_ble_mesh/ble_mesh_console
examples/bluetooth/hci/controller_hci_uart_esp32
examples/wifi/iperf
2023-12-18 09:29:58 -05:00
--modified-components ${MR_MODIFIED_COMPONENTS}
--modified-files ${MR_MODIFIED_FILES}
2023-11-03 06:09:34 -04:00
# for detailed documents, please refer to .gitlab/ci/README.md#uploaddownload-artifacts-to-internal-minio-server
- python tools/ci/artifacts_handler.py upload
2022-08-26 00:24:19 -04:00
2022-11-18 07:29:39 -05:00
.build_cmake_clang_template :
extends :
- .build_cmake_template
variables :
IDF_TOOLCHAIN : clang
TEST_BUILD_OPTS_EXTRA : ""
TEST_DIR : tools/test_apps/system/cxx_pthread_bluetooth
script :
2023-05-23 22:53:57 -04:00
# CI specific options start from "--parallel-count xxx". could ignore when running locally
2022-11-18 07:29:39 -05:00
- run_cmd python tools/ci/ci_build_apps.py $TEST_DIR -v
-t $IDF_TARGET
--copy-sdkconfig
--parallel-count ${CI_NODE_TOTAL:-1}
--parallel-index ${CI_NODE_INDEX:-1}
2023-12-18 09:29:58 -05:00
--modified-components ${MR_MODIFIED_COMPONENTS}
--modified-files ${MR_MODIFIED_FILES}
2022-11-18 07:29:39 -05:00
$TEST_BUILD_OPTS_EXTRA
2023-11-03 06:09:34 -04:00
- python tools/ci/artifacts_handler.py upload
2022-11-18 07:29:39 -05:00
2023-12-18 09:29:58 -05:00
######################
# build_template_app #
######################
2020-09-26 23:20:53 -04:00
.build_template_app_template :
2022-07-12 22:34:02 -04:00
extends :
- .build_template
2023-09-26 07:24:26 -04:00
- .before_script:build
2020-09-26 23:20:53 -04:00
variables :
LOG_PATH : "${CI_PROJECT_DIR}/log_template_app"
BUILD_PATH : "${CI_PROJECT_DIR}/build_template_app"
2023-04-07 07:44:42 -04:00
BUILD_DIR : "${BUILD_PATH}/@t/@w"
2020-09-26 23:20:53 -04:00
BUILD_LOG_CMAKE : "${LOG_PATH}/cmake_@t_@w.txt"
BUILD_COMMAND_ARGS : ""
artifacts :
paths :
- log_template_app/*
- size_info.txt
- build_template_app/**/size.json
script :
# Set the variable for 'esp-idf-template' testing
- ESP_IDF_TEMPLATE_GIT=${ESP_IDF_TEMPLATE_GIT:-"https://github.com/espressif/esp-idf-template.git"}
2020-09-28 02:27:10 -04:00
- retry_failed git clone ${ESP_IDF_TEMPLATE_GIT}
2020-09-26 23:20:53 -04:00
# Try to use the same branch name for esp-idf-template that we're
# using on esp-idf. If it doesn't exist then just stick to the default branch
- python $CHECKOUT_REF_SCRIPT esp-idf-template esp-idf-template
- export PATH="$IDF_PATH/tools:$PATH"
# Only do the default cmake build for each target, remaining part are done in the build_template_app job
- tools/ci/build_template_app.sh ${BUILD_COMMAND_ARGS}
# build-related-pre-check-jobs ------------------------------------------------
# Build at least one project for each target at earliest stage to reduce build cost for obvious failing commits
fast_template_app :
2020-11-10 04:48:35 -05:00
extends :
- .build_template_app_template
2021-02-22 03:53:37 -05:00
- .rules:build:target_test
2020-09-26 23:20:53 -04:00
stage : pre_check
variables :
BUILD_COMMAND_ARGS : "-p"
#------------------------------------------------------------------------------
2023-12-18 09:29:58 -05:00
########################################
# Clang Build Apps Without Tests Cases #
########################################
2022-11-18 07:29:39 -05:00
build_clang_test_apps_esp32 :
extends :
- .build_cmake_clang_template
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
variables :
IDF_TARGET : esp32
build_clang_test_apps_esp32s2 :
extends :
- .build_cmake_clang_template
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
variables :
IDF_TARGET : esp32s2
build_clang_test_apps_esp32s3 :
extends :
- .build_cmake_clang_template
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
variables :
IDF_TARGET : esp32s3
.build_clang_test_apps_riscv :
extends :
- .build_cmake_clang_template
variables :
# For RISCV clang generates '.linker-options' sections of type 'llvm_linker_options' in asm files.
# See (https://llvm.org/docs/Extensions.html#linker-options-section-linker-options).
# Binutils gas ignores them with warning.
# TODO: LLVM-112, Use integrated assembler.
TEST_BUILD_OPTS_EXTRA : "--ignore-warning-str 'Warning: unrecognized section type'"
build_clang_test_apps_esp32c3 :
extends :
- .build_clang_test_apps_riscv
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
variables :
IDF_TARGET : esp32c3
build_clang_test_apps_esp32c2 :
extends :
- .build_clang_test_apps_riscv
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
variables :
IDF_TARGET : esp32c2
build_clang_test_apps_esp32c6 :
extends :
- .build_clang_test_apps_riscv
2023-12-18 09:29:58 -05:00
- .rules:build
2022-11-18 07:29:39 -05:00
# TODO: c6 builds fail in master due to missing headers
allow_failure : true
variables :
IDF_TARGET : esp32c6
2023-12-18 09:29:58 -05:00
######################
# Build System Tests #
######################
2020-09-26 23:20:53 -04:00
.test_build_system_template :
2021-06-29 07:35:37 -04:00
stage : host_test
2020-09-26 23:20:53 -04:00
extends :
- .build_template
2023-07-14 08:15:50 -04:00
- .rules:build:check
2020-11-10 04:48:35 -05:00
needs :
- job : fast_template_app
artifacts : false
2023-07-14 08:15:50 -04:00
optional : true
2019-06-28 12:39:21 -04:00
script :
- ${IDF_PATH}/tools/ci/test_configure_ci_environment.sh
2023-08-10 07:02:13 -04:00
- cd ${IDF_PATH}/tools/test_build_system
2023-10-21 02:43:46 -04:00
- retry_failed git clone $KNOWN_FAILURE_CASES_REPO known_failure_cases
2023-08-10 07:02:13 -04:00
- pytest --parallel-count ${CI_NODE_TOTAL:-1} --parallel-index ${CI_NODE_INDEX:-1}
--work-dir ${CI_PROJECT_DIR}/test_build_system --junitxml=${CI_PROJECT_DIR}/XUNIT_RESULT.xml
2023-10-21 02:43:46 -04:00
--ignore-result-files known_failure_cases/known_failure_cases.txt
2020-09-26 23:20:53 -04:00
2022-08-08 20:11:57 -04:00
pytest_build_system :
extends : .test_build_system_template
2023-04-11 06:29:11 -04:00
parallel : 3
2022-08-08 20:11:57 -04:00
artifacts :
paths :
- XUNIT_RESULT.xml
- test_build_system
expire_in : 2 days
reports :
junit : XUNIT_RESULT.xml
2023-08-10 07:02:13 -04:00
pytest_build_system_macos :
extends :
- .test_build_system_template
2023-09-26 07:24:26 -04:00
- .before_script:build:macos
2023-08-10 07:02:13 -04:00
- .rules:build:macos
tags :
- macos_shell
parallel : 3
artifacts :
paths :
- XUNIT_RESULT.xml
- test_build_system
expire_in : 2 days
reports :
junit : XUNIT_RESULT.xml
2022-08-08 20:11:57 -04:00
2023-10-20 04:40:07 -04:00
.test_build_system_template_win :
stage : host_test
variables :
# Enable ccache for all build jobs. See configure_ci_environment.sh for more ccache related settings.
IDF_CCACHE_ENABLE : "1"
PYTHONPATH : "$PYTHONPATH;$IDF_PATH\\tools;$IDF_PATH\\tools\\esp_app_trace;$IDF_PATH\\components\\partition_table;$IDF_PATH\\tools\\ci\\python_packages"
before_script : [ ]
after_script : [ ]
timeout : 4 hours
script :
- .\install.ps1 --enable-ci --enable-pytest
- . .\export.ps1
- python "${SUBMODULE_FETCH_TOOL}" -s "all"
- cd ${IDF_PATH}\tools\test_build_system
- pytest --junitxml=${CI_PROJECT_DIR}\XUNIT_RESULT.xml
pytest_build_system_win :
extends :
- .test_build_system_template_win
2023-12-07 05:15:55 -05:00
- .rules:labels:windows_pytest_build_system
2023-10-20 04:40:07 -04:00
needs : [ ]
tags :
- windows-target
artifacts :
paths :
- XUNIT_RESULT.xml
- test_build_system
expire_in : 2 days
reports :
junit : XUNIT_RESULT.xml
2019-07-08 12:42:46 -04:00
build_docker :
2020-09-26 23:20:53 -04:00
extends :
2023-09-26 07:24:26 -04:00
- .before_script:minimal
2021-02-08 23:31:38 -05:00
- .rules:build:docker
2021-06-29 07:35:37 -04:00
stage : host_test
2021-08-10 04:29:25 -04:00
needs : [ ]
2019-07-08 12:42:46 -04:00
image : espressif/docker-builder:1
tags :
- build_docker_amd64_brno
variables :
DOCKER_TMP_IMAGE_NAME : "idf_tmp_image"
script :
2020-09-11 10:14:15 -04: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
2021-11-24 04:20:11 -05:00
- if [ -n "$LOCAL_GIT_MIRROR" ]; then export LOCAL_CI_REPOSITORY_URL="${LOCAL_GIT_MIRROR}/${CI_PROJECT_PATH}"; fi
2020-09-11 10:14:15 -04:00
- echo "Using repository at $LOCAL_CI_REPOSITORY_URL"
2021-10-28 00:07:02 -04:00
- 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:-$PIPELINE_COMMIT_SHA}"
2019-07-08 12:42:46 -04: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 11:34:36 -04:00
2020-07-15 12:18:33 -04:00
# This job builds template app with permutations of targets and optimization levels
build_template_app :
2021-02-08 23:31:38 -05:00
extends :
- .build_template_app_template
- .rules:build
2021-06-29 07:35:37 -04:00
stage : host_test
2020-11-10 04:48:35 -05:00
needs :
- job : fast_template_app
artifacts : false
2023-12-18 09:29:58 -05:00
####################
# Dynamic Pipeline #
####################
generate_build_child_pipeline :
extends :
- .build_template
dependencies : # set dependencies to null to avoid missing artifacts issue
needs :
- pipeline_variables
artifacts :
paths :
- build_child_pipeline.yml
- test_related_apps.txt
- non_test_related_apps.txt
script :
- run_cmd python tools/ci/dynamic_pipelines/scripts/generate_build_child_pipeline.py
--modified-components ${MR_MODIFIED_COMPONENTS}
--modified-files ${MR_MODIFIED_FILES}
build_child_pipeline :
stage : build
needs :
- job : fast_template_app
2024-01-11 00:41:58 -05:00
optional : true
2023-12-18 09:29:58 -05:00
artifacts : false
- pipeline_variables
- generate_build_child_pipeline
variables :
IS_MR_PIPELINE : $IS_MR_PIPELINE
MR_MODIFIED_COMPONENTS : $MR_MODIFIED_COMPONENTS
MR_MODIFIED_FILES : $MR_MODIFIED_FILES
PARENT_PIPELINE_ID : $CI_PIPELINE_ID
BUILD_AND_TEST_ALL_APPS : $BUILD_AND_TEST_ALL_APPS
# https://gitlab.com/gitlab-org/gitlab/-/issues/214340
inherit :
variables : false
trigger :
include :
- artifact : build_child_pipeline.yml
job : generate_build_child_pipeline
strategy : depend