1
0

feat: support adding dependencies to debian kernel packages

This commit is contained in:
dump_stack() 2023-05-14 10:27:16 +00:00
parent 181115d914
commit 7502221cfd
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
2 changed files with 5 additions and 3 deletions

View File

@ -7,6 +7,7 @@ on:
push: push:
paths: paths:
- '.github/workflows/debian-cache.yml' - '.github/workflows/debian-cache.yml'
- 'distro/debian/**'
jobs: jobs:
debian-cache: debian-cache:

View File

@ -23,9 +23,10 @@ type DebianKernelVersion struct {
} }
type DebianKernel struct { type DebianKernel struct {
Version DebianKernelVersion Version DebianKernelVersion
Image snapshot.Package Image snapshot.Package
Headers snapshot.Package Headers snapshot.Package
Dependencies []snapshot.Package
// FIXME There is a better way // FIXME There is a better way
Internal struct { Internal struct {