Skip to content

Commit

Permalink
Fix typo in path
Browse files Browse the repository at this point in the history
Signed-off-by: Michal Czyz <[email protected]>
  • Loading branch information
mczyz-antmicro committed Mar 12, 2024
1 parent 9032a88 commit 80d6245
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/implementation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ runs:
- name: IR
shell: bash
run: |
bazel run --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}/${{inputs.rule_ir}}
bazel run --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}:${{inputs.rule_ir}}
- name: Summary page
shell: bash
Expand All @@ -44,7 +44,7 @@ runs:
- name: Verilog
shell: bash
run: |
bazel build --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}/${{inputs.rule_verilog}}
bazel build --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}:${{inputs.rule_verilog}}
- name: Summary page
shell: bash
Expand All @@ -54,7 +54,7 @@ runs:
- name: Synthesis
shell: bash
run: |
bazel run --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}/${{inputs.rule_synthesis}}
bazel run --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}:${{inputs.rule_synthesis}}
- name: Summary page
shell: bash
Expand All @@ -64,7 +64,7 @@ runs:
- name: P&R
shell: bash
run: |
bazel build --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}/${{inputs.rule_pnr}}
bazel build --local_cpu_resources=HOST_CPUS-1 --local_ram_resources=HOST_RAM*.9 ${{inputs.xls_module}}:${{inputs.rule_pnr}}
- name: Summary page
shell: bash
Expand Down

0 comments on commit 80d6245

Please sign in to comment.