forked from ambatubash69/gki-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (65 loc) · 1.67 KB
/
build.yml
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
74
75
76
77
78
79
80
name: Build GKI
on:
workflow_dispatch:
inputs:
STATUS:
description: 'Build Status'
required: true
default: ''
type: choice
options:
- 'BETA'
- 'STABLE'
KSU:
description: 'KSU'
required: false
default: false
type: boolean
KSUNEXT:
description: 'KSU-Next (WIP)'
required: false
default: true
type: boolean
SUSFS4KSU:
description: 'SUSFS4KSU'
required: false
default: true
type: boolean
jobs:
build:
name: Build GKI Kernel
runs-on: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Maximize build space
uses: AdityaGarg8/remove-unwanted-software@v4.1
with:
remove-dotnet: 'true'
remove-android: 'true'
remove-haskell: 'true'
remove-codeql: 'true'
remove-cached-tools: 'true'
remove-docker-images: 'true'
remove-large-packages: 'true'
- name: Set Swap Space
uses: pierotofy/set-swap-space@master
with:
swap-size-gb: 10
- name: Build
run: |
[[ -x "build.sh" ]] || chmod a+x build.sh
[[ -x "telegram_functions.sh" ]] || chmod a+x telegram_functions.sh
if [[ "${{ inputs.SUSFS4KSU }}" == "true" ]]; then
export USE_KSU_SUSFS="yes"
fi
if [[ "${{ inputs.KSU }}" == "true" ]]; then
export USE_KSU="yes"
fi
if [[ "${{ inputs.KSUNEXT }}" == "true" ]]; then
export USE_KSU_NEXT="yes"
fi
export STATUS="${{ inputs.STATUS }}"
export chat_id="${{ secrets.CHAT_ID }}"
export token="${{ secrets.TOKEN }}"
./build.sh