4
0

gen.yml 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. name: codegen
  2. on:
  3. push:
  4. branches-ignore: 'create-pull-request/**'
  5. schedule:
  6. - cron: 00 4 * * *
  7. workflow_dispatch:
  8. jobs:
  9. codegen:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - uses: actions/checkout@v4
  13. with:
  14. submodules: recursive
  15. - uses: dtolnay/rust-toolchain@nightly
  16. with:
  17. components: rustfmt, clippy
  18. - uses: Swatinem/rust-cache@v2
  19. - name: Install headers
  20. run: |
  21. set -euxo pipefail
  22. sudo apt -y update
  23. sudo apt -y install libelf-dev libc6-dev libc6-dev-{arm64,armel,loong64,riscv64,ppc64el,s390x,mips}-cross
  24. - run: cargo xtask codegen
  25. - run: cargo xtask public-api --bless
  26. - run: cargo fmt --all
  27. - id: libbpf
  28. working-directory: xtask/libbpf
  29. run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
  30. - uses: peter-evans/create-pull-request@v7
  31. with:
  32. branch: create-pull-request/codegen
  33. commit-message: |
  34. aya-obj, aya-ebpf-bindings: regenerate
  35. libbpf commit: ${{ steps.libbpf.outputs.sha }}
  36. title: 'aya-obj, aya-ebpf-bindings: regenerate'
  37. body: |
  38. **Automated changes**
  39. libbpf commit: ${{ steps.libbpf.outputs.sha}}