Skip to content

Commit 0ea4791

Browse files
committed
ci: switch to bash scripts
1 parent ddd3ef6 commit 0ea4791

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/full-flow.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Run Yosys, OpenROAD and KLayout
3232
uses: ./.github/actions/oseda-cmd
3333
with:
34-
cmd: "make yosys && make openroad && make klayout"
34+
cmd: "cd yosys && ./run.sh && cd ../openroad && ./run.sh && cd ../klayout && ./def2gds.sh"
3535
- name: Upload openroad outputs
3636
uses: actions/upload-artifact@v4
3737
with:

.github/workflows/short-flow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- name: Run simulation commands in OSEDA
2626
uses: ./.github/actions/oseda-cmd
2727
with:
28-
cmd: "make sw && make verilator"
28+
cmd: "make sw && cd verilator && ./run.sh"
2929
- name: Upload built software
3030
uses: actions/upload-artifact@v4
3131
with:
@@ -57,7 +57,7 @@ jobs:
5757
- name: Setup OSEDA container
5858
uses: ./.github/actions/oseda-cmd
5959
with:
60-
cmd: "make yosys && tail -n 40 yosys/reports/*area.rpt"
60+
cmd: "cd yosys && ./run.sh && tail -n 40 reports/*area.rpt"
6161
- name: Upload synthesis outputs
6262
uses: actions/upload-artifact@v4
6363
with:

0 commit comments

Comments
 (0)