You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.1 KiB
37 lines
1.1 KiB
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@v2
|
|
- 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 }}
|