-
Notifications
You must be signed in to change notification settings - Fork 0
63 lines (45 loc) · 1.21 KB
/
kernel-compiler.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
name: Building New Kernel
on: [push]
env:
GIT_SECRETB: ${{ secrets.GIT_SECRETB }}
GIT_SECRET: ${{ secrets.GIT_SECRET }}
BOT_TOKEN: ${{ secrets.BOT_TOKEN }}
GIT_USERNAME: ${{ secrets.GIT_USERNAME }}
ZIP_PASS: ${{ secrets.ZIP_PASS }}
GL_N: ${{ secrets.GL_N }}
GL_S: ${{ secrets.GL_S }}
TZ: Asia/Jakarta
DEBIAN_FRONTEND: noninteractive
jobs:
build:
defaults:
run:
shell: bash
timeout-minutes: 360
strategy:
fail-fast: false
matrix:
config:
# - file: blank
- file: 'begonia-r-oss-std-d-slmk'
name: run-${{ matrix.config.file }}
runs-on: ubuntu-22.04
container:
image: zycromerz/kerneldocker:v4
steps:
- name: Checkout
uses: actions/checkout@v2
# - name: Cleanup Linux Enviroment
# uses: ZyCromerZ/slimhub_actions@main
# - name: Configure Swap
# uses: pierotofy/set-swap-space@master
- name: initialize
run: |
chmod +x misc/initialize.sh
./misc/initialize.sh
- name: compile kernels
run: |
chmod +x maing.sh
./maing.sh ${{ matrix.config.file }}
- name: remove everything
run: rm -rf ./*