forked from pulp-platform/axi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
117 lines (97 loc) · 1.98 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
variables:
VSIM: vsim-10.7b -64
VLIB: vlib-10.7b
VLOG: vlog-10.7b -64
SYNOPSYS_DC: synopsys-2019.12 dc_shell -64bit
before_script:
- export PATH=~/.cargo/bin:$PATH
- mkdir -p build
vsim:
stage: build
script:
- >
if ! memora lookup vsim; then
cd build && ../scripts/compile_vsim.sh
memora insert vsim
fi
synopsys_dc:
stage: build
script:
- >
if ! memora lookup synopsys_dc; then
cd build && ../scripts/synth.sh
memora insert synopsys_dc
fi
.test_module: &test_module
stage: test
script:
- >
if ! memora lookup $TEST_MODULE; then
memora get vsim
cd build && ../scripts/run_vsim.sh $TEST_MODULE
memora insert $TEST_MODULE
fi
axi_addr_test:
<<: *test_module
variables:
TEST_MODULE: axi_addr_test
axi_atop_filter:
<<: *test_module
variables:
TEST_MODULE: axi_atop_filter
axi_cdc:
<<: *test_module
variables:
TEST_MODULE: axi_cdc
axi_delayer:
<<: *test_module
variables:
TEST_MODULE: axi_delayer
axi_dw_downsizer:
<<: *test_module
variables:
TEST_MODULE: axi_dw_downsizer
axi_dw_upsizer:
<<: *test_module
variables:
TEST_MODULE: axi_dw_upsizer
axi_isolate:
<<: *test_module
variables:
TEST_MODULE: axi_isolate
axi_lite_regs:
<<: *test_module
variables:
TEST_MODULE: axi_lite_regs
axi_lite_to_apb:
<<: *test_module
variables:
TEST_MODULE: axi_lite_to_apb
axi_lite_to_axi:
<<: *test_module
variables:
TEST_MODULE: axi_lite_to_axi
axi_lite_mailbox:
<<: *test_module
variables:
TEST_MODULE: axi_lite_mailbox
axi_lite_xbar:
<<: *test_module
variables:
TEST_MODULE: axi_lite_xbar
axi_modify_address:
<<: *test_module
variables:
TEST_MODULE: axi_modify_address
axi_serializer:
<<: *test_module
variables:
TEST_MODULE: axi_serializer
axi_to_axi_lite:
<<: *test_module
variables:
TEST_MODULE: axi_to_axi_lite
axi_xbar:
<<: *test_module
variables:
TEST_MODULE: axi_xbar