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
7 changes: 6 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ jobs:

- name: Runs all the stages in the shell
if: matrix.os == 'ubuntu-latest'
shell: bash -e {0}
env:
BUILD_PS3TOOLCHAIN_ONLY: 1
run: |
mkdir $PWD/ps3dev
export PS3DEV=$PWD/ps3dev
Expand All @@ -47,6 +50,8 @@ jobs:
- name: Runs all the stages in the shell
if: matrix.os == 'macos-15-intel'
shell: arch -x86_64 bash -e {0}
env:
BUILD_PS3TOOLCHAIN_ONLY: 1
run: |
mkdir $PWD/ps3dev
export PS3DEV=$PWD/ps3dev
Expand All @@ -67,4 +72,4 @@ jobs:
- uses: actions/upload-artifact@v6
with:
name: ps3dev-${{ steps.slug.outputs.sha8 }}-${{matrix.os}}
path: ps3dev.tar.gz
path: ps3dev.tar.gz
6 changes: 6 additions & 0 deletions scripts/008-psl1ght.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
## Download the source code.
wget --no-check-certificate https://github.com/ps3dev/PSL1GHT/tarball/master -O psl1ght.tar.gz

## Check if we want to skip this step
if [[ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]]; then
echo "PS3 Toolchain only set. Skipping..."
exit 0
fi

## Unpack the source code.
rm -Rf psl1ght && mkdir psl1ght && tar --strip-components=1 --directory=psl1ght -xvzf psl1ght.tar.gz

Expand Down
6 changes: 6 additions & 0 deletions scripts/009-ps3libraries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@
## Download the source code.
wget --no-check-certificate https://github.com/ps3dev/ps3libraries/tarball/master -O ps3libraries.tar.gz

## Check if we want to skip this step
if [[ -n "$BUILD_PS3TOOLCHAIN_ONLY" ]]; then
echo "PS3 Toolchain only set. Skipping..."
exit 0
fi

## Unpack the source code.
rm -Rf ps3libraries && mkdir ps3libraries && tar --strip-components=1 --directory=ps3libraries -xvzf ps3libraries.tar.gz && cd ps3libraries

Expand Down
Loading