Skip to content

Commit

Permalink
Comment out important steps
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 13, 2024
1 parent a002a7a commit 6ebef7a
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/actions/implementation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,40 +31,40 @@ runs:
run: |
echo "Module ${{inputs.xls_module}}" >> $GITHUB_STEP_SUMMARY
- 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}}
# - 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}}

- name: Summary page
shell: bash
run: |
echo "Generate IR :white_check_mark:" >> $GITHUB_STEP_SUMMARY
- 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}}
# - 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}}

- name: Summary page
shell: bash
run: |
echo "Verilog codegen | :white_check_mark:" >> $GITHUB_STEP_SUMMARY
- 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}}
# - 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}}

- name: Summary page
shell: bash
run: |
echo -n "Synthesis | :white_check_mark:" >> $GITHUB_STEP_SUMMARY
- 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}}
# - 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}}

- name: Summary page
shell: bash
Expand Down

0 comments on commit 6ebef7a

Please sign in to comment.