risc-v-tlm/.travis.yml

20 lines
368 B
YAML
Raw Normal View History

2018-09-27 19:38:16 +08:00
language: cpp
os:
- linux
script:
- make -j 4
compiler:
- gcc
install:
2018-09-27 20:03:22 +08:00
- cd ..
- wget http://www.accellera.org/images/downloads/standards/systemc/systemc-2.3.2.tar.gz
- tar xfvz systemc-2.3.2.tar.gz
- cd systemc-2.3.2
- mkdir build && cd build
- ../configure
- make -j 4 && make install
- cd ../..
2018-09-27 20:07:50 +08:00
- rm -r systemc-2.3.2/build
2018-09-27 20:03:22 +08:00
- rm systemc-2.3.2.tar.gz