-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
50 lines (45 loc) · 1.03 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
# ======= SAME DOCKER IMAGE ===========
image: localhost:5000/spyglass_centos8
# =========== ALL THE STAGES ===========
# All the stages will be executed in this order
stages:
- linting
- sim
variables:
GIT_SUBMODULE_STRATEGY: recursive
before_script:
- git submodule sync --recursive
- git submodule update --init --recursive
# =========== STAGE ===========
# - linting
# =============================
linting_spyglass:
stage: linting
tags:
- spyglass
artifacts:
paths:
- ./ci/apb_lightlock/consolidated_reports/apb_lightlock_lint_lint_rtl/moresimple.rpt
when: always
expire_in: 30 days
script:
- echo "lint_spyglass"
- make "docker_spyglass"
allow_failure: false
# =========== STAGE ===========
# - sim
# =============================
questa:
image: localhost:5000/questa_ubuntu:latest
stage: sim
tags:
- questa
artifacts:
paths:
- ./ci/.questa.log
when: always
expire_in: 30 days
script:
- echo "Questa TB"
- make "questa"
allow_failure: false