add github action to tag repo
diff --git a/.github/workflows/caravel_build.yml b/.github/workflows/caravel_build.yml index d977573..3f82153 100644 --- a/.github/workflows/caravel_build.yml +++ b/.github/workflows/caravel_build.yml
@@ -48,5 +48,5 @@ git add def gds lef mag maglef signoff verilog git config user.email "rbacik@hotmail.com" git config user.name "roman3017" - git commit -m "tag action: update build" + git commit -m "action: update build" git push origin HEAD:main
diff --git a/.github/workflows/user_project_ci.yml b/.github/workflows/user_project_ci.yml index bc3cc32..c336b0e 100644 --- a/.github/workflows/user_project_ci.yml +++ b/.github/workflows/user_project_ci.yml
@@ -64,3 +64,15 @@ - name: Run DV tests # Run test number 0,1,2,3,4 in one job <test-ids> <sim-mode> run: bash .github/scripts/dv/run-dv-tests.sh 4 GL + tag_repo: + if: ${{ github.event_name == 'workflow_dispatch' }} + runs-on: ubuntu-latest + steps: + - name: current date + id: date + run: echo "::set-output name=date::$(date +'%Y-%m-%d')" + - name: tag + uses: tvdias/github-tagger@v0.0.1 + with: + tag: ${{ steps.date.outputs.date }} + repo-token: ${{ secrets.GITHUB_TOKEN }}
diff --git a/openlane/user_proj/config.tcl b/openlane/user_proj/config.tcl index fde6603..7c26eb9 100755 --- a/openlane/user_proj/config.tcl +++ b/openlane/user_proj/config.tcl
@@ -66,14 +66,16 @@ set ::env(QUIT_ON_HOLD_VIOLATIONS) 0 set ::env(QUIT_ON_TIMING_VIOLATIONS) 0 set ::env(QUIT_ON_SLEW_VIOLATIONS) 0 +#set ::env(QUIT_ON_LVS_ERROR) 0 +#set ::env(QUIT_ON_MAGIC_DRC) 0 set ::env(ROUTING_CORES) 8 set ::env(RT_MAX_LAYER) "met4" set ::env(RUN_CVC) 1 -set ::env(RUN_KLAYOUT_DRC) 0 -set ::env(RUN_MAGIC_DRC) 0 +#set ::env(RUN_KLAYOUT_DRC) 0 +#set ::env(RUN_MAGIC_DRC) 0 set ::env(SYNTH_MAX_FANOUT) 4 set ::env(SYNTH_DRIVING_CELL) "sky130_fd_sc_hd__inv_8"
diff --git a/openlane/user_project_wrapper/config.tcl b/openlane/user_project_wrapper/config.tcl index 14a9337..769aca6 100755 --- a/openlane/user_project_wrapper/config.tcl +++ b/openlane/user_project_wrapper/config.tcl
@@ -33,7 +33,6 @@ ###################################################### # User Configurations -## Source Verilog Files set ::env(VERILOG_FILES) "\ $::env(CARAVEL_ROOT)/verilog/rtl/defines.v \ $script_dir/src/user_project_wrapper.v"