Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 0 additions & 46 deletions .github/workflows/6.1.y-baikal.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/6.12.y.yml

This file was deleted.

47 changes: 0 additions & 47 deletions .github/workflows/6.8.y.yml

This file was deleted.

41 changes: 39 additions & 2 deletions .github/workflows/6.1.y.yml → .github/workflows/Build.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,33 @@
name: Build 6.1.y
name: Build Kernel

on:
workflow_dispatch:
inputs:
branch:
description: 'Branch to build'
default: 'ps4-linux-6.15.y'
type: choice
options:
- ps4-linux-6.15.y-baikal
- ps4-linux-6.15.y
- ps4-linux-6.12.y
- ps4-linux-6.9.y
- ps4-linux-6.8.y
- ps4-linux-6.6.y
- ps4-linux-6.1.y
- ps4-linux-5.16.y
- ps4-linux-5.15.y
- linux-5.15.y
- master
create_release:
description: 'Create a release?'
required: true
default: false
type: boolean
release_name:
description: 'Release name (optional, defaults to branch name)'
required: false
type: string

jobs:
build-kernel:
Expand All @@ -11,7 +37,7 @@ jobs:
- name: Checkout the repository
uses: actions/checkout@v4
with:
ref: ps4-linux-6.1.y
ref: ${{ inputs.branch }}
submodules: recursive

- name: Install dependencies
Expand Down Expand Up @@ -45,3 +71,14 @@ jobs:
with:
name: bzImage
path: arch/x86/boot/bzImage

- name: Create Release
if: ${{ inputs.create_release }}
uses: softprops/action-gh-release@v2
with:
tag_name: ${{ inputs.branch }}
name: ${{ inputs.release_name || inputs.branch }}
files: arch/x86/boot/bzImage
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}