forked from werneazc/gsysc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (30 loc) · 869 Bytes
/
.travis.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
language: cpp
install:
- wget https://www.accellera.org/images/downloads/standards/systemc/systemc-2.3.3.tar.gz -O /tmp/systemc-2.3.3.tar.gz
- tar -C /tmp -xvf /tmp/systemc-2.3.3.tar.gz
- sudo ln -s /usr/bin/make /usr/bin/gmake
- pushd /tmp/systemc-2.3.3 && mkdir objdir && cd objdir && ../configure --prefix=/tmp/systemc --with-unix-layout --enable-pthreads && gmake && sudo gmake install && popd
branches:
only:
- master
jobs:
include:
os: linux
dist: bionic
compiler: clang
env:
- SYSTEMC_ROOT="/tmp/systemc"
addons:
apt:
packages:
- cmake
- doxygen
- libqt4-dev
- libqtcore4
- libqtgui4
- libqt4-qt3support
- qt4-qmake
script:
- mkdir build
- cmake -B build -S ./ -DINCLUDE_TESTS=OFF -G "Unix Makefiles"
- cmake --build . -- -j2