-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (28 loc) · 860 Bytes
/
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
name: Build CI
on:
workflow_dispatch:
jobs:
build:
runs-on: buildjet-64vcpu-ubuntu-2204
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Clone Kernel
uses: actions/checkout@v4
with:
repository: y82t2z/WaifuKernel-F3
path: kernel
token: ${{ secrets.GH_TOKEN }}
- name: Clone AnyKernel
uses: actions/checkout@v4
with:
repository: y82t2z/AnyKernel3
path: AnyKernel3
- name: Download Tool
run: sudo apt update && sudo apt install libarchive-tools build-essential libncurses-dev bison flex libssl-dev binutils python3
- name: Download Clang
run: |
chmod +x download-clang.sh
bash download-clang.sh
- name: Setup tmate session
uses: mxschmitt/action-tmate@v3