From 6ebef7a8fc96ec730e904274d0ca0287819ec82f Mon Sep 17 00:00:00 2001 From: Michal Czyz Date: Wed, 13 Mar 2024 12:00:26 +0100 Subject: [PATCH] Comment out important steps Signed-off-by: Michal Czyz --- .github/actions/implementation/action.yml | 32 +++++++++++------------ 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/.github/actions/implementation/action.yml b/.github/actions/implementation/action.yml index d6f77585cb..ee1b8a3f57 100644 --- a/.github/actions/implementation/action.yml +++ b/.github/actions/implementation/action.yml @@ -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