Skip to content

Commit

Permalink
add check bindings github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
samlaf committed Jun 9, 2024
1 parent 4a204d0 commit b77cbe8
Showing 1 changed file with 53 additions and 0 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/check-bindings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: check bindings up-to-date
on:
push:
branches:
- master
pull_request:

permissions:
contents: read

jobs:
make-bindings:
name: make bindings and check for diffs
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v4
with:
submodules: "recursive"

- name: Install go1.21
uses: actions/setup-go@v5
with:
go-version: "1.21"

- name: Add Ethereum PPA
run: sudo add-apt-repository -y ppa:ethereum/ethereum

- name: Install Abigen
run: sudo apt-get update && sudo apt-get install ethereum

- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: Run make bindings and check for diffs
run: |
make bindings > output.txt
if [ "$(grep -c -i "fatal" output.txt)" -ge 1 ]; then
printf "Make binding run FAILED\n"
rm output.txt
exit 1
else
echo "make_bindings_success=true" >> $GITHUB_ENV
rm output.txt
fi
if [ ! -z "$(git status --porcelain)" ]; then
printf "Current generated bindings not up to date\n"
git diff
git status
exit 1
fi

0 comments on commit b77cbe8

Please sign in to comment.