Merge pull request #1 from Stratosphere-Kernel/dependabot/github_acti… #145
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 on Github Actions | |
on: | |
push: | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: | |
image: panchajanya1999/archlinux:latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup env | |
run: pacman -Syu --needed --noconfirm wget base-devel xmlto inetutils bc cpio python-sphinx python-sphinx_rtd_theme graphviz imagemagick git python zip github-cli fortune-mod ccache | |
- name: Initialize ccache | |
uses: hendrikmuhs/[email protected] | |
with: | |
max-size: 2048M | |
- name: Build Stratosphere Kernel | |
run: | | |
bash ci_build.sh | |
env: | |
token: ${{ secrets.TG_TOKEN }} | |
- name: Store Kernel Package as Artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: Flashable zip | |
path: AnyKernel3/package.zip |