Skip to content

Commit 1fc2f6b

Browse files
author
Abdullah Mughrabi
committed
first commit
0 parents  commit 1fc2f6b

File tree

315 files changed

+47005
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

315 files changed

+47005
-0
lines changed

.gitignore

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
00_bench/obj
2+
00_bench/bin
3+
00_bench/build
4+
5+
nohup.out
6+
.qsys_edit
7+
8+
01_capi_integration/capi_common/sim/modelsim.ini
9+
01_capi_integration/capi_common/sim/transcript
10+
01_capi_integration/capi_common/sim/vish_stacktrace.vstf
11+
01_capi_integration/capi_common/sim/vsim.wlf
12+
01_capi_integration/capi_common/sim/work
13+
01_capi_integration/capi_common/sim/debug.log
14+
01_capi_integration/capi_common/sim/gmon.out
15+
01_capi_integration/capi_common/server/debug.log
16+
01_capi_integration/capi_common/server/gmon.out
17+

.travis.yml

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
sudo: required
2+
dist: xenial
3+
4+
before_install:
5+
- sudo apt-get update -qq
6+
7+
env: OMP_NUM_THREADS=4
8+
9+
language: c
10+
compiler:
11+
- gcc
12+
13+
script:
14+
- make -j
15+
- make test
16+
17+
notifications:
18+
email:
19+
on_success: never
20+
on_failure: always
21+
recipients:
22+
23+
24+
branches:
25+
only:
26+
- master

0 commit comments

Comments
 (0)