-
Notifications
You must be signed in to change notification settings - Fork 115
/
.gitlab-ci.yml
220 lines (206 loc) · 6.88 KB
/
.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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
# Copyright 2019 ETH Zurich and University of Bologna
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
variables:
PATH: "/home/gitlabci/bin:/usr/lib64/qt-3.3/bin:/bin:/usr/bin:/usr/local/bin:/sbin:/usr/sbin:/usr/local/sbin:/usr/local/condor/bin:/usr/sepp/bin:/usr/local/anaconda3/bin:/var/lib/snapd/snap/bin"
before_script:
- pwd
- echo "$PATH"
# after_script:
# - echo "stage finished"
stages:
- fetch
- build_and_test_boot
- build_and_test
- build_and_test_vips
- build_and_test_psram
- build_fpga
- sim_questa_multivers
fetch_std:
stage: fetch
script:
- echo "Fetching regression tests"
- make test-checkout-gitlab
- mkdir -p regression_tests/riscv_tests_soc
- cp -r regression_tests/riscv_tests/* regression_tests/riscv_tests_soc
- mkdir regression_tests/hellospi
- cp -r regression_tests/hello/* regression_tests/hellospi/
- mkdir regression_tests/hellohyper
- cp -r regression_tests/hello/* regression_tests/hellohyper/
- source setup/vsim.sh
- echo "Fetching IPs"
- make checkout
- echo "Fetching vips"
- ./rtl/vip/get-vips.sh --yes --gitlab
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- .bender/*
- bender
- Bender.lock
- sim/*
- rtl/vip/*
- regression_tests/*
b&t_rtl_std:
stage: build_and_test
before_script:
- echo "Generate scripts without DPI and VIP support"
- make scripts
- echo "Compiling RTL model and DPI libraries"
- make build
- echo "Fetching Runtime"
- make pulp-runtime
- echo "Source and exports"
- source pulp-runtime/configs/pulp.sh;
- export PULP_RISCV_GCC_TOOLCHAIN=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/
- export PATH=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/bin/:$PATH
script:
- echo "Running software test"
- make test-fast-regressions
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- .bender/*
- bender
- Bender.lock
- regression_tests/*
- tests/*
- sim/*
- rtl/*
reports:
junit: regression_tests/simplified-runtime.xml
b&t_rtl_vip:
stage: build_and_test_vips
before_script:
- echo "Generate scripts with DPI and VIP support"
- make scripts-vips
- echo "Compiling RTL model and DPI libraries"
- make build
- echo "Fetching Runtime"
- make pulp-runtime
- echo "Source and exports"
- source pulp-runtime/configs/pulp.sh;
- export PULP_RISCV_GCC_TOOLCHAIN=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/
- export PATH=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/bin/:$PATH
script:
- echo "Running software test"
- make git-ci-periphs-regs
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- .bender/*
- bender
- Bender.lock
- regression_tests/*
- sim/*
- rtl/*
reports:
junit: regression_tests/simplified-periph-runtime.xml
b&t_rtl_boot:
stage: build_and_test_boot
before_script:
- echo "Generate scripts with DPI and VIP support"
- make scripts-vips
- echo "Compiling RTL model and DPI libraries"
- make build
- echo "Fetching Runtime"
- git clone https://github.com/pulp-platform/pulp-runtime.git -b boot_code_update
- echo "Source and exports"
- source pulp-runtime/configs/pulp.sh;
- export PULP_RISCV_GCC_TOOLCHAIN=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/
- export PATH=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/bin/:$PATH
script:
- echo "Running software test"
- make git-boot
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- .bender/*
- bender
- Bender.lock
- regression_tests/*
- sim/*
- rtl/*
reports:
junit: regression_tests/boot-runtime.xml
b&t_rtl_psram:
stage: build_and_test_psram
before_script:
- echo "Generate scripts with DPI and VIP support"
- make scripts-psram
- echo "Compiling RTL model and DPI libraries"
- make build
- echo "Fetching Runtime"
- make pulp-runtime
- echo "Source and exports"
- source pulp-runtime/configs/pulp.sh;
- export PULP_RISCV_GCC_TOOLCHAIN=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/
- export PATH=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/bin/:$PATH
script:
- echo "Running software test"
- make git-ci-psram
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- .bender/*
- bender
- Bender.lock
- regression_tests/*
- sim/*
- rtl/*
reports:
junit: regression_tests/simplified-psram-runtime.xml
build_fpga:
stage: build_fpga
before_script:
- echo "Generate scripts for FPGA"
- make scripts
script:
- echo "Building for zcu102"
- make -C fpga zcu102 VIVADO='vivado-2019.1.1 vivado'
artifacts:
name: "$CI_JOB_NAME-$CI_COMMIT_REF_NAME-$CI_COMMIT_SHORT_SHA"
paths:
- fpga/*
sim_questa_multivers:
stage: sim_questa_multivers
allow_failure: true
when: always
parallel:
matrix:
- QUESTA_PREFIX:
- 'questa-2019.3'
- 'questa-2020.1'
- 'questa-2021.3'
before_script:
- export VSIM="$QUESTA_PREFIX vsim"
- export VLOG="$QUESTA_PREFIX vlog"
- export VOPT="$QUESTA_PREFIX vopt"
- export VLIB="$QUESTA_PREFIX vlib"
- export VMAP="$QUESTA_PREFIX vmap"
- export VCOM="$QUESTA_PREFIX vcom"
- export PULP_RISCV_GCC_TOOLCHAIN=/usr/pack/pulpsdk-1.0-kgf/artifactory/pulp-sdk-release/pkg/pulp_riscv_gcc/1.0.16/
- git clone https://github.com/pulp-platform/pulp-runtime.git -b v0.0.15
- mkdir hello
- printf "#include <stdio.h>\nint main(){\n printf(\"Hello World\\\n\");\n return 0;\n}\n" > hello/hello.c
- printf "PULP_APP = hello\nPULP_APP_FC_SRCS = hello.c\nPULP_APP_HOST_SRCS = hello.c\nPULP_CFLAGS = -O3 -g\n\ninclude \$(PULP_SDK_HOME)/install/rules/pulp_rt.mk\n" > hello/Makefile
script:
- make scripts
- make clean build
- source setup/vsim.sh
- source pulp-runtime/configs/pulp.sh
- make -C hello clean all run
dependencies:
- fetch_std
needs:
- fetch_std