-
Notifications
You must be signed in to change notification settings - Fork 1
/
.gitlab-ci.yml
32 lines (29 loc) · 945 Bytes
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
workflow:
rules:
- if: $CI_PIPELINE_SOURCE == "merge_request_event" || $CI_PIPELINE_SOURCE == "schedule" || $CI_PIPELINE_SOURCE == "web"
image: "vgitlab01.tq-net.de:5005/tq-embedded/tqmaxx/toolchain-tqmaxx/ccs-base:ubuntu-20.04"
stages:
- build
build:
tags:
- docker
- tqmaxx
stage: build
script:
- eclipse -noSplash -data "." -application com.ti.ccstudio.apps.projectCreate -ccs.projectSpec "$PROJECTS"
- eclipse -noSplash -data "." -application com.ti.ccstudio.apps.projectBuild -ccs.workspace
parallel:
matrix:
- PROJECTS: [
"TQMaX4XxL.MCU.BSP.projectspec",
"sbl/tq_sbl_null/tq_sbl_null.projectspec",
"sbl/tq_sbl_ospi/tq_sbl_ospi.projectspec",
"sbl/tq_sbl_uart_uniflash/tq_sbl_uart_uniflash.projectspec"
]
artifacts:
when: on_success
paths:
- "**/*.out"
- "**/*.appimage*"
- "**/*linkInfo.xml"
- "**/*.map"