Build Kernel ginkgo (KSU/Fourteen) #12
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 Kernel (KSU) | |
on: | |
workflow_dispatch | |
env: | |
TOKEN_GITHUB: ${{ secrets.TOKEN_GITHUB }} | |
jobs: | |
build_ci: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repo Kernel | |
uses: MoeKernel/[email protected] | |
with: | |
depth: 1 | |
branch: 'fourteen' | |
owner: 'MoeKernel' | |
repository: 'android_kernel_xiaomi_ginkgo' | |
- name: Clone Repo Scripts | |
uses: MoeKernel/[email protected] | |
with: | |
owner: 'MoeKernel' | |
branch: 'ksu' | |
repository: 'scripts' | |
- name: Move Scripts | |
working-directory: ./scripts | |
run: | | |
chmod +x ksu_update.sh build_ci | |
cp build_ci build_count.txt ksu_update.sh ../android_kernel_xiaomi_ginkgo | |
- name: Restore Cache | |
uses: MoeKernel/cache@v3 | |
with: | |
path: /home/runner/tc | |
key: ${{ runner.os }}-tc | |
id: tc-cache | |
- name: Github Configs | |
working-directory: ./android_kernel_xiaomi_ginkgo | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "ginkgo" | |
- name: Install Dependencies | |
run: | | |
sudo apt-get update | |
sudo apt-get -y --no-install-recommends install python3 python3-pip git make gcc bc bison flex libssl-dev ccache libelf-dev libncurses-dev bc binutils-dev ca-certificates clang cmake curl file flex git libelf-dev libssl-dev lld make ninja-build python3-dev texinfo u-boot-tools xz-utils zlib1g-dev | |
- name: Pip Install Packages | |
working-directory: ./android_kernel_xiaomi_ginkgo | |
run: | | |
pip install Pyrogram TgCrypto load_dotenv | |
- name: Export Variables | |
run: | | |
echo "CHAT_ID=${{ secrets.CHAT_ID }}" >> .env | |
echo "API_ID=${{ secrets.API_ID }}" >> .env | |
echo "API_HASH=${{ secrets.API_HASH }}" >> .env | |
echo "BOT_TOKEN=${{ secrets.BOT_TOKEN_PIXELOS }}" >> .env | |
- name: Compile Kernel CI | |
working-directory: ./android_kernel_xiaomi_ginkgo | |
run: | | |
python3 bot.py -t dev # or release. | |
- name: Move CI Build | |
working-directory: ./android_kernel_xiaomi_ginkgo | |
run: | | |
cp build_count.txt ../scripts | |
- name: Commit Update | |
working-directory: ./scripts | |
run: | | |
git config --global user.email "[email protected]" | |
git config --global user.name "Akari" | |
git remote set-url origin https://${{ secrets.TOKEN_GITHUB }}@github.com/MoeKernel/scripts.git | |
git add build_count.txt | |
git commit -m "update build count" | |
git push origin ksu -f |