-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update memory cards, add missing XInput DLL, and fix HDD image path
- Loading branch information
1 parent
0701abd
commit 140714d
Showing
9 changed files
with
84 additions
and
65 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,22 @@ | ||
name: "build-lambda-package" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'releases/*' | ||
|
||
jobs: | ||
units: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Build installer | ||
run: | | ||
make | ||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pxsx2-installer-archive | ||
path: build/* | ||
|
||
name: "build-lambda-package" | ||
on: | ||
push: | ||
branches: | ||
- master | ||
- 'releases/*' | ||
|
||
jobs: | ||
units: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Build installer | ||
run: | | ||
make | ||
- name: Archive artifacts | ||
uses: actions/upload-artifact@v3 | ||
with: | ||
name: pxsx2-installer-archive | ||
path: build/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
name: "package-release" | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
units: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Build final archive | ||
run: | | ||
make zip | ||
- name: upload archive to release | ||
uses: softprops/action-gh-release@v1 | ||
if: ${{startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
files: build/archive/PCSX2-Installer.zip | ||
fail_on_unmatched_files: true | ||
|
||
name: "package-release" | ||
on: | ||
release: | ||
types: [published] | ||
|
||
jobs: | ||
units: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Build final archive | ||
run: | | ||
make zip | ||
- name: upload archive to release | ||
uses: softprops/action-gh-release@v1 | ||
if: ${{startsWith(github.ref, 'refs/tags/') }} | ||
with: | ||
files: build/PCSX2-Installer.zip | ||
fail_on_unmatched_files: true | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# Idea | ||
.idea | ||
|
||
# build | ||
build/** | ||
|
||
# keep files | ||
!.gitkeep | ||
# Idea | ||
.idea | ||
|
||
# build | ||
build/** | ||
|
||
# keep files | ||
!.gitkeep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
default: build | ||
|
||
zip: build | ||
mkdir -p build/archive/ | ||
cd build/ && zip -qr archive/PCSX2-Installer.zip * -x archive/ | ||
|
||
build: clean | ||
@cd include/ && zip -qr ../build/include.zip * && cd - | ||
cp -r bin/ install.bat build/ | ||
|
||
clean: | ||
rm -rf build/* | ||
default: build | ||
|
||
zip: build | ||
cd build/ && zip -r PCSX2-Installer.zip PCSX2-1.7/ && cd - | ||
|
||
build: clean | ||
mkdir -p build/PCSX2-1.7/ | ||
@cd include/ && zip -qr ../build/PCSX2-1.7/include.zip * && cd - | ||
cp -r bin/ install.bat build/PCSX2-1.7/ | ||
|
||
clean: | ||
rm -rf build/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.