fix: restore ability to sign transaction with ledger firmware 2.2.2 (backport #2668) #1398
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# protobuf runs `make proto-lint` and `make proto-gen`. | |
name: protobuf | |
on: | |
pull_request: | |
jobs: | |
proto-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: proto-lint | |
run: make proto-lint | |
proto-gen: | |
runs-on: ubuntu-latest | |
timeout-minutes: 5 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Check protobuf generated code matches committed code" | |
# yamllint disable | |
run: | | |
set -euo pipefail | |
make proto-gen | |
if ! git diff --stat --exit-code ; then | |
echo ">> ERROR:" | |
echo ">>" | |
echo ">> Protobuf generated code requires update (either tools or .proto files may have changed)." | |
echo ">> Ensure your tools are up-to-date, re-run 'make proto-gen' and update this PR." | |
echo ">>" | |
exit 1 | |
fi | |
# yamllint enable | |
# add this back when we start using versioning | |
# breakage: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: check-breakage | |
# run: make proto-check-breaking |