Skip to content

Commit 5884ec9

Browse files
committed
WIP fix impl tests
1 parent 67251bc commit 5884ec9

File tree

7 files changed

+46
-11
lines changed

7 files changed

+46
-11
lines changed

.github/workflows/impl.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,12 @@ jobs:
5050
- run: dockerBuild hdlc/impl:pnr impl pnr
5151
- run: dockerBuild hdlc/impl:latest impl latest
5252

53-
- run: dockerTest hdlc/impl:ice40 nextpnr--ice40
54-
- run: dockerTest hdlc/impl:icestorm nextpnr--icestorm
55-
- run: dockerTest hdlc/impl:ecp5 nextpnr--ecp5
56-
- run: dockerTest hdlc/impl:prjtrellis nextpnr--prjtrellis
57-
- run: dockerTest hdlc/impl:pnr nextpnr--ice40
58-
- run: dockerTest hdlc/impl:latest nextpnr
53+
- run: dockerTest hdlc/impl:ice40 impl--ice40
54+
- run: dockerTest hdlc/impl:icestorm impl--icestorm
55+
- run: dockerTest hdlc/impl:ecp5 impl--ecp5
56+
- run: dockerTest hdlc/impl:prjtrellis impl--prjtrellis
57+
- run: dockerTest hdlc/impl:pnr impl--pnr
58+
- run: dockerTest hdlc/impl:latest impl
5959

6060
- name: Login to DockerHub
6161
if: github.event_name != 'pull_request' && github.repository == 'hdl/containers'

test/impl--ecp5.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ cd $(dirname "$0")
77
./ghdl.sh
88
./yosys.sh
99
./nextpnr--ecp5.sh
10-
./prjtrellis.sh

test/impl--ice40.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,3 @@ cd $(dirname "$0")
77
./ghdl.sh
88
./yosys.sh
99
./nextpnr--ice40.sh
10-
./icestorm.sh

test/impl--icestorm.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env sh
2+
3+
set -e
4+
5+
cd $(dirname "$0")
6+
7+
./ghdl.sh
8+
./yosys.sh
9+
10+
./nextpnr--ice40.sh
11+
./icestorm.sh

test/impl--pnr.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env sh
2+
3+
set -e
4+
5+
cd $(dirname "$0")
6+
7+
./ghdl.sh
8+
./yosys.sh
9+
10+
./nextpnr--ecp5.sh
11+
./nextpnr--ice40.sh

test/impl--prjtrellis.sh

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env sh
2+
3+
set -e
4+
5+
cd $(dirname "$0")
6+
7+
./ghdl.sh
8+
./yosys.sh
9+
10+
./nextpnr--ecp5.sh
11+
./prjtrellis.sh

test/impl.sh

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ cd $(dirname "$0")
2929
./smoke-tests/nextpnr.sh
3030
./smoke-tests/yosys.sh
3131

32-
ghdl --version
33-
yosys --version
32+
./ghdl.sh
33+
./yosys.sh
3434

35-
./todo.sh
35+
./nextpnr--ice40.sh
36+
./icestorm.sh
37+
38+
./nextpnr--ecp5.sh
39+
./prjtrellis.sh

0 commit comments

Comments
 (0)