Skip to content
Merged
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
37 changes: 37 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
name: Build PSL1GHT

on: [ push, pull_request, workflow_dispatch ]

jobs:
build_psl1ght:
runs-on: ubuntu-latest
steps:

- name: Checkout
uses: actions/checkout@v4

- name: Set env vars
id: slug
run: |
echo "sha_name=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV
sudo apt-get -y install autoconf automake bison flex gcc libelf-dev make texinfo patch wget zlib1g-dev libtool-bin bzip2 pkg-config

# using pre-compiled sdk
# to do: replace toolchain link
- name: Download PSL1GHT Toolchain
run: |
curl -sL https://github.com/ps3dev/ps3toolchain/releases/download/2026-06-09/ps3dev-92534e60-ubuntu-latest.tar.gz | tar xvz -C ./
echo "PS3DEV=${GITHUB_WORKSPACE}/ps3dev" >> $GITHUB_ENV
echo "PSL1GHT=${GITHUB_WORKSPACE}/ps3dev" >> $GITHUB_ENV

- name: Build PSL1GHT
run: |
make
7z a psl1ght.zip $PSL1GHT/bin

- name: Push package artifact
uses: actions/upload-artifact@v4
with:
name: psl1ght-build_${{ env.sha_name }}
path: psl1ght.zip
if-no-files-found: error
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
[![License](https://img.shields.io/github/license/ps3dev/PSL1GHT.svg)](./LICENSE)
[![CI](https://github.com/ps3dev/PSL1GHT/actions/workflows/build.yml/badge.svg)](https://github.com/ps3dev/PSL1GHT/actions/workflows/build.yml)

PSL1GHT
=======

Expand All @@ -14,7 +17,7 @@ Credits
Tempus - PSL1GHT Logo
lousyphreak - libaudio
Hermes - sysmodule, libpngdec, libjpgdec
BigBoss - EyeToy support added to libcamera sample, libgem sample.
BigBoss - EyeToy support added to libcamera sample, libgem sample.
ooPo - ps3libraries
ElSemi - Vertex Program Compiler
zerkman - SPU sample code
Expand Down
Loading