-
Notifications
You must be signed in to change notification settings - Fork 111
50 lines (43 loc) · 1.14 KB
/
build-kernel-sw64.yml
File metadata and controls
50 lines (43 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: build kernel sw64
on:
push:
pull_request:
workflow_dispatch:
env:
KBUILD_BUILD_USER: deepin-kernel-sig
KBUILD_BUILD_HOST: deepin-kernel-builder
email: support@deepin.org
permissions:
pull-requests: read
jobs:
build-kernel-sw6b:
runs-on: [self-hosted, linux, x64]
steps:
- uses: actions/checkout@v3
- name: "Install Deps"
run: |
git config --global user.email $email
git config --global user.name $KBUILD_BUILD_USER
- name: "Compile kernel"
run: |
# .config
time swmk1230 xuelang_defconfig
time swmk1230 -j`nproc`
- name: 'Upload Kernel Artifact'
uses: actions/upload-artifact@v4
with:
name: Kernel-ABI-sw6b
path: "Module.symvers"
build-kernel-sw8a:
runs-on: [self-hosted, linux, x64]
steps:
- name: "Compile kernel"
run: |
# .config
time swmk8a1230 junzhang_defconfig
time swmk8a1230 -j`nproc`
- name: 'Upload Kernel Artifact'
uses: actions/upload-artifact@v4
with:
name: Kernel-ABI-sw8a
path: "Module.symvers"