-
-
Notifications
You must be signed in to change notification settings - Fork 196
73 lines (58 loc) · 1.73 KB
/
fedora-builder.yml
File metadata and controls
73 lines (58 loc) · 1.73 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
name: Build Fedora kernel
on:
workflow_call:
inputs:
_cpusched:
required: true
type: string
env:
_processor_opt: "x86-64"
_distro: "Fedora"
_git_mirror: "gregkh"
_logging_use_script: "no"
_install_after_building: "no"
_debugdisable: "true"
_noccache: "true"
_STRIP: "true"
_compiler: "llvm"
_lto_mode: "full"
_kernel_on_diet: "true"
_kernel_work_folder: "/tmp"
_kernel_source_folder: "/tmp"
# _modprobeddb: "true"
_modprobeddb_db_path: ${{ github.workspace }}/modprobed.db
_nofallback: "true"
jobs:
build-kernel:
env:
_cpusched: ${{ inputs._cpusched }}
runs-on: ubuntu-latest
container: fedora:latest
steps:
- name: Install initial dependencies
run: dnf install git gawk -y
- name: Checkout linux-tkg
uses: actions/checkout@v4
- name: fix git folder ownership
run: git config --global --add safe.directory `pwd`
- name: run git status
run: git status
# - name: "[debug] make dummy modprobed-db file for faster ci"
# run: |
# touch "${_modprobeddb_db_path}"
# echo "${_modprobeddb_db_path}"
- name: Install deps and compile kernel
run: yes '' | ./install.sh install
# run: |
# mkdir -p "$PKGDEST"
# echo "test" > "$PKGDEST"/linux-$_cpusched.pkg.tar.zst
- name: Cleanup useless RPM files
run: rm -rf RPMS/*kernel-headers*.rpm
- name: rename kernel config
run: mv kernelconfig.new kernelconfig.fedora.${{ env._cpusched }}.txt
- uses: actions/upload-artifact@v4
with:
name: fedora-kernel-packages-${{ env._cpusched }}
path: |
RPMS/*.rpm
kernelconfig*.txt