From 348baa0bb1c7af7694332431bc31cc71cd296c87 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Tue, 9 Jun 2026 17:52:06 -0300 Subject: [PATCH 1/3] Change Ubuntu version and update PSL1GHT toolchain link Updated the GitHub Actions workflow to use the latest Ubuntu version and modified the download link for the PSL1GHT toolchain. --- .github/workflows/build.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a9a4481..851a671 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -4,7 +4,7 @@ on: [ push, pull_request, workflow_dispatch ] jobs: build_ps3libraries: - runs-on: ubuntu-22.04 + runs-on: ubuntu-latest steps: - name: Checkout @@ -14,16 +14,12 @@ jobs: id: slug run: | echo "sha_name=$(echo ${GITHUB_SHA} | cut -c1-8)" >> $GITHUB_ENV - sudo apt install python2.7 sudo apt-get -y install autoconf automake bison flex make texinfo patch wget zlib1g-dev libtool-bin bzip2 pkg-config # using pre-compiled PS3 toolchain - # to do: replace toolchain link - name: Download PSL1GHT Toolchain run: | - curl -sL https://github.com/bucanero/ps3toolchain/releases/download/ubuntu-latest-fad3b5fb/ps3dev-ubuntu-latest-2020-08-31.tar.gz | tar xvz -C ./ - curl -sL https://github.com/ps3dev/PSL1GHT/raw/master/ppu/include/sysutil/sysutil.h -o ps3dev/ppu/include/sysutil/sysutil.h - curl -sL https://gist.github.com/bucanero/150ec41325894bbd1b4513ecb9e1cfb6/raw/1814600a1b3c804209c4f71dd6316779e160cb25/utime.h -o ps3dev/ppu/ppu/include/sys/utime.h + 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 From 4b92cd51c4b164dd57ac24b5c103be1b7341175f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Tue, 9 Jun 2026 17:54:06 -0300 Subject: [PATCH 2/3] Delete .github/workflows/CI.yml --- .github/workflows/CI.yml | 31 ------------------------------- 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/CI.yml diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index 027e84d..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: CI -# NOT a full build! Just smoke testing script integrity - -on: - workflow_dispatch: - push: - -jobs: - smoke: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v4 - - - name: Check shell scripts are executable - run: | - test -x libraries.sh - test -x scripts/get-config-scripts.sh - find scripts depends -name '*.sh' -exec test -x {} \; - - - name: Check config helper cache path - run: | - mkdir -p build - cd build - CONFIG_BASE_URL="https://127.0.0.1/pretend-savannah-is-down" CONFIG_TIMEOUT=1 ../scripts/get-config-scripts.sh - test -s ../archives/config.guess - test -s ../archives/config.sub - - - name: Check no direct Savannah config downloads remain - run: | - ! grep -R "git.savannah.gnu.org.*config\.\(guess\|sub\)" -n scripts depends \ No newline at end of file From 494aaa041c5d837afec4bc732b363f6d426a9a9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dami=C3=A1n=20Parrino?= Date: Tue, 9 Jun 2026 17:55:29 -0300 Subject: [PATCH 3/3] Update CI badge link in README --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index d5468eb..2d67296 100644 --- a/readme.md +++ b/readme.md @@ -1,4 +1,4 @@ -[![CI](https://github.com/ps3dev/ps3libraries/actions/workflows/CI.yml/badge.svg)](https://github.com/ps3dev/ps3libraries/actions/workflows/CI.yml) +[![CI](https://github.com/ps3dev/ps3libraries/actions/workflows/build.yml/badge.svg)](https://github.com/ps3dev/ps3libraries/actions/workflows/build.yml) # ps3libraries