|
|
|
# Phytium Iot gitlab-ci.yml file
|
|
|
|
|
|
|
|
workflow:
|
|
|
|
rules:
|
|
|
|
- if: $CI_PIPELINE_SOURCE == "merge_request_event"
|
|
|
|
|
|
|
|
stages:
|
|
|
|
- pre_stage # 准备阶段
|
|
|
|
- compile_stage # 编译阶段
|
|
|
|
- e2000d_board_test_stage # 测试阶段
|
|
|
|
- post_stage # 收尾阶段
|
|
|
|
|
|
|
|
# 所有soc覆盖编译启动
|
|
|
|
all_soc_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- echo "All soc config compile is about to start..."
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
# 各模块编译
|
|
|
|
ai_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/ai
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
media_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/media
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
network_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/network
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
peripherals_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/peripherals
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
python_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/python
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
storage_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/storage
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
system_compile:
|
|
|
|
stage: compile_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/auto_compile_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_compile.py $CI_MERGE_REQUEST_PROJECT_PATH $CI_PROJECT_DIR $CI_PROJECT_DIR/example/system
|
|
|
|
tags:
|
|
|
|
- compile
|
|
|
|
needs: ["all_soc_compile"]
|
|
|
|
|
|
|
|
# 各模块板级测试
|
|
|
|
ai_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/ai
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
media_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/media
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
network_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/network
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
peripherals_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/peripherals
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
python_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/python
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
storage_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/storage
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|
|
|
|
|
|
|
|
system_test:
|
|
|
|
stage: e2000d_board_test_stage
|
|
|
|
script:
|
|
|
|
- cd /home/gitlab-runner/test_tool
|
|
|
|
- python3 set_common_info.py /home/gitlab-runner/test_tool/phytium-test-tools/test_tool/config_info/common.json standalone
|
|
|
|
- cd /home/gitlab-runner/test_tool/phytium-test-tools/test_tool
|
|
|
|
- python3 gitlab_pipeline_board_test.py $CI_PROJECT_DIR $CI_PROJECT_DIR/example/system
|
|
|
|
tags:
|
|
|
|
- test
|
|
|
|
allow_failure: true
|
|
|
|
when: manual
|