Compare commits
2 commits
da56a8211e
...
ebdec6918c
Author | SHA1 | Date | |
---|---|---|---|
ebdec6918c | |||
0a8269dc0e |
1 changed files with 8 additions and 6 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
|
||||
|
@ -41,7 +43,7 @@ jobs:
|
|||
- name: Setting up environment
|
||||
run: apk add nodejs curl findutils
|
||||
- name: Package download
|
||||
uses: forgejo/download-artifact@v3
|
||||
uses: actions/download-artifact@v3
|
||||
- name: Package deployment
|
||||
run: |
|
||||
find -name '*.deb' > deb.list
|
||||
|
|
Loading…
Reference in a new issue