mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-21 00:39:07 +08:00
Initial idea was to run it hourly, but when it runs hourly it produce a lot of useless noise and we had to switch it do daily. When we run it daily caching make much less sense and only make debugging more complex.
21 lines
373 B
YAML
21 lines
373 B
YAML
name: pahole-staging
|
|
|
|
on:
|
|
schedule:
|
|
- cron: '0 18 * * *'
|
|
|
|
|
|
jobs:
|
|
vmtest:
|
|
runs-on: ubuntu-latest
|
|
name: Kernel LATEST + staging pahole
|
|
env:
|
|
STAGING: tmp.master
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: ./.github/actions/setup
|
|
- uses: ./.github/actions/vmtest
|
|
with:
|
|
kernel: LATEST
|
|
pahole: $STAGING
|