-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitlab-ci.yml
50 lines (47 loc) · 1.11 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
stages:
- tests
register_tests:
stage: tests
image: hdlc/ghdl:yosys
before_script:
- yosys --version
script:
- cd formal/register_tests
- ./run_tests.sh | tee docker_register_tests.log
artifacts:
paths:
- formal/register_tests/docker_register_tests.log
expire_in: 6 week
issue_ys_639_tests:
stage: tests
image: hdlc/ghdl:yosys
before_script:
- yosys --version
script:
- cd formal
- cd example-yosys-issue639/
- ./run-all-yosys-equiv.sh >> yosys_equiv.log
- ./check-results.sh | tee equiv_check.log
artifacts:
paths:
- formal/example-yosys-issue639/*.log
expire_in: 6 week
ghdl_synth_libs:
stage: tests
image: hdlc/ghdl:yosys
before_script:
- yosys --version
script:
- cd synth/
- cd vhdl-pkgs-custom-lib/
- bash run-yosys.sh | tee ghdl_yosys_synth.log
- cd ../
- cd vhdl-pkgs-custom-lib2/
- bash run-yosys.sh | tee ghdl_yosys_synth.log
- cd ../
- cd vhdl-pkgs-lib-work/
- bash run-yosys.sh | tee ghdl_yosys_synth.log
artifacts:
paths:
- synth/vhdl-pkgs-*/ghdl_yosys_synth.log
expire_in: 6 week