We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9c4a244 commit 9c6669eCopy full SHA for 9c6669e
1 file changed
.github/workflows/build-kernel-sw64.yml
@@ -0,0 +1,35 @@
1
+name: build kernel sw64
2
+on:
3
+ push:
4
+ pull_request:
5
+ workflow_dispatch:
6
+
7
+env:
8
+ KBUILD_BUILD_USER: deepin-kernel-sig
9
+ KBUILD_BUILD_HOST: deepin-kernel-builder
10
+ email: support@deepin.org
11
12
+permissions:
13
+ pull-requests: read
14
15
+jobs:
16
+ build-kernel:
17
+ runs-on: [self-hosted, linux, x64]
18
+ steps:
19
+ - uses: actions/checkout@v3
20
+ - name: "Install Deps"
21
+ run: |
22
+ git config --global user.email $email
23
+ git config --global user.name $KBUILD_BUILD_USER
24
25
+ - name: "Compile kernel"
26
27
+ # .config
28
+ time swmk1230 xuelang_defconfig
29
+ time swmk1230 -j`nproc`
30
31
+ - name: 'Upload Kernel Artifact'
32
+ uses: actions/upload-artifact@v4
33
+ with:
34
+ name: Kernel-ABI-sw64
35
+ path: "Module.symvers"
0 commit comments