Skip to content

Commit 431c5d2

Browse files
authored
Fix/python install ledger lint (#66)
* skip python install on new builder * disable .clang-tidy checks when using new builder
1 parent 66280e4 commit 431c5d2

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/_ledger_lint.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ jobs:
4040
- name: Generate compilation database
4141
run: bear -- make -j BOLOS_SDK="$NANOSP_SDK"
4242
- name: Setup python
43+
if: ${{ !inputs.use_latest_builder }}
4344
uses: actions/setup-python@v5
4445
with:
4546
python-version: "3.11"
@@ -55,7 +56,7 @@ jobs:
5556
step-summary: true
5657
style: file # uses .clang-format
5758
thread-comments: true
58-
tidy-checks: "" # use only .clang-tidy checks
59+
tidy-checks: ${{ inputs.use_latest_builder && '-*' || '' }}
5960
- name: Fail if errors
6061
if: steps.linter.outputs.checks-failed > 0
6162
run: |

0 commit comments

Comments
 (0)