forked from eclufsc/ophidian
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitlab-ci.yml
153 lines (143 loc) · 4.23 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
variables:
BUILD_SCRIPT_DEPENDENCIES:
"build-essential
git
cmake
libboost1.63-dev
libz-dev
flex
bison
libbison-dev"
DEPENDENCIES_UBUNTU_ARTFUL:
"build-essential
git
cmake
libboost1.63-dev
liblemon-dev
def
lef
ophidian-units
libflute-dev
libverilog-parser-dev"
DEPENDENCIES_UBUNTU_BIONIC:
"build-essential
git
cmake
libboost-dev
liblemon-dev
def
lef
ophidian-units
libflute-dev
libverilog-parser-dev"
GIT_SUBMODULE_STRATEGY: recursive
stages:
- build
build_on_debian-buster:
image: debian:buster
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y software-properties-common gpg
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A62C1A5EFCB3D41A1FDB35758179B53998C15E64 && apt-get update -qq
- add-apt-repository -y -u -m "deb http://ppa.launchpad.net/eclufsc/ophidian/ubuntu artful main"
- apt-get install -qq -y $DEPENDENCIES_UBUNTU_ARTFUL
script:
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/
build_on_debian-sid:
image: debian:sid
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y software-properties-common gpg
- apt-key adv --keyserver keyserver.ubuntu.com --recv-keys A62C1A5EFCB3D41A1FDB35758179B53998C15E64 && apt-get update -qq
- add-apt-repository -y -u -m "deb http://ppa.launchpad.net/eclufsc/ophidian/ubuntu artful main"
- apt-get install -qq -y $DEPENDENCIES_UBUNTU_ARTFUL
script:
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/
build_on_ubuntu-artful:
image: ubuntu:artful
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y software-properties-common
- add-apt-repository -y -u ppa:eclufsc/ophidian
- apt-get install -qq -y $DEPENDENCIES_UBUNTU_ARTFUL
script:
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/
build_on_ubuntu-bionic:
image: ubuntu:bionic
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y software-properties-common
- add-apt-repository -y ppa:eclufsc/ophidian && apt-get update -qq
- apt-get install -qq -y $DEPENDENCIES_UBUNTU_BIONIC
script:
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/
build_using_dependencies_script_on_source:
image: ubuntu:artful
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y $BUILD_SCRIPT_DEPENDENCIES
script:
- echo "y" | bash build_dependencies.sh
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/
build_using_dependencies_script_on_sistem:
image: ubuntu:artful
stage: build
before_script:
- apt-get update -qq && apt-get install -qq -y $BUILD_SCRIPT_DEPENDENCIES
script:
- echo y | bash build_dependencies.sh --install_to /usr/local
- mkdir build && cd build
- cmake -DCMAKE_INSTALL_PREFIX=/usr
-DCMAKE_BUILD_TYPE=Release
..
- make -j2
- cd test
- ./ophidian_tests
artifacts:
paths:
- build/