File tree Expand file tree Collapse file tree 4 files changed +67
-0
lines changed Expand file tree Collapse file tree 4 files changed +67
-0
lines changed Original file line number Diff line number Diff line change @@ -8,3 +8,4 @@ recursive-include utils *
88recursive-include examples *
99recursive-include tests *
1010recursive-include img *
11+ recursive-include scripts *
Original file line number Diff line number Diff line change 1+ mkdir 2.7
2+ cd 2.7
3+ virtualenv --python=python .
4+ source bin/activate
5+ git clone https://github.com/PyHDI/veriloggen.git
6+ cd veriloggen
7+ python setup.py install
8+ pip install pytest pytest-pythonpath
9+ mv veriloggen veriloggen.old
10+ cd tests
11+ make test PYTHON=python
12+ make clean
13+ make run PYTHON=python
14+ cd ..
15+ cd examples
16+ make test PYTHON=python
17+ make clean
18+ make run PYTHON=python
19+ cd ..
20+ mv veriloggen.old veriloggen
21+ cd ..
22+ cd ..
Original file line number Diff line number Diff line change 1+ mkdir 3.4
2+ cd 3.4
3+ virtualenv --python=python3 .
4+ source bin/activate
5+ git clone https://github.com/PyHDI/veriloggen.git
6+ cd veriloggen
7+ python3 setup.py install
8+ pip install pytest pytest-pythonpath
9+ mv veriloggen veriloggen.old
10+ cd tests
11+ make test
12+ make clean
13+ make run
14+ cd ..
15+ cd examples
16+ make test
17+ make clean
18+ make run
19+ cd ..
20+ mv veriloggen.old veriloggen
21+ cd ..
22+ cd ..
Original file line number Diff line number Diff line change 1+ mkdir 3.5
2+ cd 3.5
3+ virtualenv --python=python3 .
4+ source bin/activate
5+ git clone https://github.com/PyHDI/veriloggen.git
6+ cd veriloggen
7+ python3 setup.py install
8+ pip install pytest pytest-pythonpath
9+ mv veriloggen veriloggen.old
10+ cd tests
11+ make test
12+ make clean
13+ make run
14+ cd ..
15+ cd examples
16+ make test
17+ make clean
18+ make run
19+ cd ..
20+ mv veriloggen.old veriloggen
21+ cd ..
22+ cd ..
You can’t perform that action at this time.
0 commit comments