Build CI #147
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-32vcpu-ubuntu-2204 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Clone Kernel | |
uses: actions/checkout@v4 | |
with: | |
repository: y82t2z/WaifuKernel-F3 | |
path: kernel/kernel_xiaomi_sm8250 | |
token: ${{ secrets.GH_TOKEN }} | |
- name: Download Tool | |
run: sudo apt update && sudo apt install libarchive-tools build-essential libncurses-dev bison flex libssl-dev binutils python3 ccache | |
- name: Setup tmate session | |
uses: mxschmitt/action-tmate@v3 |