File tree Expand file tree Collapse file tree 3 files changed +57
-0
lines changed Expand file tree Collapse file tree 3 files changed +57
-0
lines changed Original file line number Diff line number Diff line change 1+ workflow :
2+ rules :
3+ # Disable those non-protected push triggered pipelines
4+ - if : ' $CI_COMMIT_REF_NAME != "master" && $CI_COMMIT_BRANCH !~ /^release\/v/ && $CI_COMMIT_TAG !~ /^\d+\.\d+(\.\d+)?($|-)/ && $CI_PIPELINE_SOURCE == "push"'
5+ when : never
6+ # when running merged result pipelines, CI_COMMIT_SHA represents the temp commit it created.
7+ # Please use PIPELINE_COMMIT_SHA at all places that require a commit sha of the original commit.
8+ - if : $CI_OPEN_MERGE_REQUESTS != null
9+ variables :
10+ PIPELINE_COMMIT_SHA : $CI_MERGE_REQUEST_SOURCE_BRANCH_SHA
11+ IS_MR_PIPELINE : 1
12+ - if : $CI_OPEN_MERGE_REQUESTS == null
13+ variables :
14+ PIPELINE_COMMIT_SHA : $CI_COMMIT_SHA
15+ IS_MR_PIPELINE : 0
16+ - if : ' $CI_PIPELINE_SOURCE == "schedule"'
17+ variables :
18+ IS_SCHEDULED_RUN : " true"
19+ - when : always
20+
21+ # Place the default settings in `.gitlab/workflows/common.yml` instead
22+
23+ include :
24+ - ' .gitlab/workflows/common.yml'
25+ - ' .gitlab/workflows/sample.yml'
Original file line number Diff line number Diff line change 1+ # ####################
2+ # Default Variables #
3+ # ####################
4+
5+ stages :
6+ - pre_check
7+ - build
8+ - test
9+ - result
10+
11+ variables :
12+ ESP_IDF_VERSION : " 5.4"
13+ ESP_ARDUINO_VERSION : " 3.2.1"
14+
15+ # ############
16+ # `default` #
17+ # ############
18+
19+ default :
20+ retry :
21+ max : 2
22+ when :
23+ # In case of a runner failure we could hop to another one, or a network error could go away.
24+ - runner_system_failure
25+ # Job execution timeout may be caused by a network issue.
26+ - job_execution_timeout
Original file line number Diff line number Diff line change 1+ hello-world :
2+ stage : test
3+ script :
4+ - echo "Hello, World from GitLab CI!"
5+ rules :
6+ - when : always
You can’t perform that action at this time.
0 commit comments