mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
name: codegen
|
|
|
|
on:
|
|
push:
|
|
branches-ignore: 'create-pull-request/**'
|
|
|
|
schedule:
|
|
- cron: 00 4 * * *
|
|
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
codegen:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
submodules: recursive
|
|
|
|
- uses: dtolnay/rust-toolchain@nightly
|
|
with:
|
|
components: rustfmt, clippy
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
|
|
- name: Install headers
|
|
run: |
|
|
set -euxo pipefail
|
|
sudo apt -y update
|
|
sudo apt -y install libelf-dev libc6-dev libc6-dev-{arm64,armel,loong64,riscv64,ppc64el,s390x,mips}-cross
|
|
|
|
- run: cargo xtask codegen
|
|
- run: cargo xtask public-api --bless
|
|
- run: cargo fmt --all
|
|
|
|
- id: libbpf
|
|
working-directory: xtask/libbpf
|
|
run: echo "sha=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT"
|
|
|
|
- uses: peter-evans/create-pull-request@v7
|
|
with:
|
|
branch: create-pull-request/codegen
|
|
commit-message: |
|
|
aya-obj, aya-ebpf-bindings: regenerate
|
|
|
|
libbpf commit: ${{ steps.libbpf.outputs.sha }}
|
|
title: 'aya-obj, aya-ebpf-bindings: regenerate'
|
|
body: |
|
|
**Automated changes**
|
|
|
|
libbpf commit: ${{ steps.libbpf.outputs.sha}}
|