mirror of https://github.com/VLSIDA/OpenRAM.git
Add first attempt at code coverage.
This commit is contained in:
parent
b8299565eb
commit
d6bcba4326
|
|
@ -0,0 +1,6 @@
|
|||
[run]
|
||||
omit =
|
||||
# omit anything in a .local directory anywhere
|
||||
*/.local/*
|
||||
# omit everything in /usr
|
||||
/usr/*
|
||||
|
|
@ -1,6 +1,23 @@
|
|||
stages:
|
||||
- test
|
||||
- analyze
|
||||
|
||||
freepdk45:
|
||||
script: "/home/gitlab-runner/regress_freepdk45.sh"
|
||||
stage: test
|
||||
script:
|
||||
- /home/gitlab-runner/regress_freepdk45.sh
|
||||
|
||||
scn4m_subm:
|
||||
script: "/home/gitlab-runner/regress_scn4m_subm.sh"
|
||||
stage: test
|
||||
script:
|
||||
- /home/gitlab-runner/regress_scn4m_subm.sh
|
||||
|
||||
analyze:
|
||||
stage: analyze
|
||||
script:
|
||||
- coverage report -m
|
||||
artifacts:
|
||||
paths:
|
||||
- public
|
||||
expire_in: 30 days
|
||||
coverage: '/TOTAL.+ ([0-9]{1,3}%)/'
|
||||
|
|
|
|||
12
README.md
12
README.md
|
|
@ -1,9 +1,15 @@
|
|||
# OpenRAM
|
||||
Master: [](https://github.com/VLSIDA/PrivateRAM/commits/master)
|
||||
Dev: [](https://github.com/VLSIDA/PrivateRAM/commits/dev)
|
||||
[](https://github.com/VLSIDA/PrivateRAM/archive/master.zip)
|
||||
|
||||
[](./LICENSE)
|
||||
|
||||
Master: [](https://github.com/VLSIDA/PrivateRAM/commits/master)
|
||||
[]
|
||||
[](https://github.com/VLSIDA/PrivateRAM/archive/master.zip)
|
||||
|
||||
Dev: [](https://github.com/VLSIDA/PrivateRAM/commits/dev)
|
||||
[]
|
||||
[](https://github.com/VLSIDA/PrivateRAM/archive/dev.zip)
|
||||
|
||||
An open-source static random access memory (SRAM) compiler.
|
||||
|
||||
# What is OpenRAM?
|
||||
|
|
|
|||
Loading…
Reference in New Issue