gen.yml 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. - run: echo "LIBBPF_SHA=$(git rev-parse HEAD)" >> $GITHUB_ENV
  28. working-directory: xtask/libbpf
  29. - uses: peter-evans/create-pull-request@v7
  30. with:
  31. branch: create-pull-request/codegen
  32. commit-message: |
  33. aya-obj, aya-ebpf-bindings: regenerate
  34. libbpf commit: ${{ env.LIBBPF_SHA }}
  35. title: 'aya-obj, aya-ebpf-bindings: regenerate'
  36. body: |
  37. **Automated changes**
  38. libbpf commit: ${{ env.LIBBPF_SHA }}