mirror of https://github.com/PCSX2/pcsx2.git
CI: Allow user to override deps build path
This commit is contained in:
parent
9d978c67ec
commit
3d13c5d13c
|
@ -120,7 +120,7 @@ jobs:
|
|||
|
||||
- name: Build Dependencies
|
||||
if: steps.cache-deps.outputs.cache-hit != 'true'
|
||||
run: .github/workflows/scripts/linux/build-dependencies-qt.sh
|
||||
run: .github/workflows/scripts/linux/build-dependencies-qt.sh "$HOME/deps"
|
||||
|
||||
- name: Download patches
|
||||
run: |
|
||||
|
|
|
@ -2,7 +2,12 @@
|
|||
|
||||
set -e
|
||||
|
||||
INSTALLDIR="$HOME/deps"
|
||||
if [ "$#" -ne 1 ]; then
|
||||
echo "Syntax: $0 <output directory>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
INSTALLDIR="$1"
|
||||
NPROCS="$(getconf _NPROCESSORS_ONLN)"
|
||||
SDL=SDL2-2.28.5
|
||||
QT=6.6.1
|
||||
|
|
Loading…
Reference in New Issue