mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-20 16:29:07 +08:00
Due to the transition from Node 16 to Node 20, the checkout action needs to be updated to v4. More info: https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ Signed-off-by: Geyslan Gregório <geyslan@gmail.com>
37 lines
1.1 KiB
YAML
37 lines
1.1 KiB
YAML
name: ondemand
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
kernel-origin:
|
|
description: 'git repo for linux kernel'
|
|
default: 'https://git.kernel.org/pub/scm/linux/kernel/git/bpf/bpf-next.git'
|
|
required: true
|
|
kernel-rev:
|
|
description: 'rev/tag/branch for linux kernel'
|
|
default: "master"
|
|
required: true
|
|
pahole-origin:
|
|
description: 'git repo for pahole'
|
|
default: 'https://git.kernel.org/pub/scm/devel/pahole/pahole.git'
|
|
required: true
|
|
pahole-rev:
|
|
description: 'ref/tag/branch for pahole'
|
|
default: "master"
|
|
required: true
|
|
|
|
jobs:
|
|
vmtest:
|
|
runs-on: ubuntu-latest
|
|
name: vmtest with customized pahole/Kernel
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: ./.github/actions/setup
|
|
- uses: ./.github/actions/vmtest
|
|
with:
|
|
kernel: 'LATEST'
|
|
kernel-rev: ${{ github.event.inputs.kernel-rev }}
|
|
kernel-origin: ${{ github.event.inputs.kernel-origin }}
|
|
pahole: ${{ github.event.inputs.pahole-rev }}
|
|
pahole-origin: ${{ github.event.inputs.pahole-origin }}
|