Build CI #96
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |