Skip to content

Commit 295f10e

Browse files
committed
Moved test to test_tinytapeout, updated github actions
1 parent ca60ed6 commit 295f10e

File tree

8 files changed

+13
-5
lines changed

8 files changed

+13
-5
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,11 @@ jobs:
2121

2222
- name: Install Python packages
2323
shell: bash
24-
run: pip install -r test/requirements.txt
24+
run: pip install -r test_tinytapeout/requirements.txt
2525

2626
- name: Run tests
2727
run: |
28-
cd test
28+
cd test_tinytapeout
2929
make clean
3030
make
3131
# make will return success even if the test fails, so check for failure in the results.xml
@@ -34,7 +34,7 @@ jobs:
3434
- name: Test Summary
3535
uses: test-summary/[email protected]
3636
with:
37-
paths: "test/results.xml"
37+
paths: "test_tinytapeout/results.xml"
3838
if: always()
3939

4040
- name: upload vcd
@@ -43,5 +43,5 @@ jobs:
4343
with:
4444
name: test-vcd
4545
path: |
46-
test/tb.vcd
47-
test/result.xml
46+
test_tinytapeout/tb.vcd
47+
test_tinytapeout/result.xml

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,11 @@ test/sim_build
99
test/__pycache__/
1010
test/results.xml
1111
test/gate_level_netlist.v
12+
test_tinytapeout/sim_build
13+
test_tinytapeout/__pycache__/
14+
test_tinytapeout/results.xml
15+
test_tinytapeout/gate_level_netlist.v
16+
test_chipignite/sim_build
17+
test_chipignite/__pycache__/
18+
test_chipignite/results.xml
19+
test_chipignite/gate_level_netlist.v
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)