Build in subdirectory
This commit is contained in:
parent
0a8269dc0e
commit
ebdec6918c
1 changed files with 7 additions and 5 deletions
|
@ -19,19 +19,21 @@ jobs:
|
|||
sudo hostname host.docker.internal
|
||||
- name: Checkout Sources
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
path: pve-kernel-thunderx
|
||||
- name: Checkout submodules
|
||||
run: git submodule update --init --depth 16 --jobs 3
|
||||
- name: Setup build
|
||||
run: git -C pve-kernel-thunderx submodule update --init --depth 16 --jobs 3
|
||||
- name: Build Kernel
|
||||
run: |
|
||||
cd pve-kernel-thunderx
|
||||
debian/rules debian/control
|
||||
sudo mk-build-deps --tool 'apt-get --no-install-recommends --yes' --install debian/control
|
||||
- name: Build Kernel
|
||||
run: debuild --no-lintian -ePVE* --jobs=auto -b -uc -us
|
||||
debuild --no-lintian -ePVE* --jobs=auto -b -uc -us
|
||||
- name: Upload Artifacts
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: debs
|
||||
path: "../*.deb"
|
||||
path: "*.deb"
|
||||
release-deploy:
|
||||
needs: [release-build]
|
||||
runs-on: aarch64
|
||||
|
|
Loading…
Reference in a new issue