forked from PrismLauncher/PrismLauncher
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge commit '5ce8cd6b84cecb8ec774d69d65de5b53ed45b01d' into develop
- Loading branch information
Showing
77 changed files
with
705 additions
and
342 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -76,7 +76,7 @@ jobs: | |
qt_ver: 6 | ||
qt_host: windows | ||
qt_arch: '' | ||
qt_version: '6.6.1' | ||
qt_version: '6.7.0' | ||
qt_modules: 'qt5compat qtimageformats' | ||
qt_tools: '' | ||
|
||
|
@@ -88,7 +88,7 @@ jobs: | |
qt_ver: 6 | ||
qt_host: windows | ||
qt_arch: 'win64_msvc2019_arm64' | ||
qt_version: '6.6.1' | ||
qt_version: '6.7.0' | ||
qt_modules: 'qt5compat qtimageformats' | ||
qt_tools: '' | ||
|
||
|
@@ -98,7 +98,7 @@ jobs: | |
qt_ver: 6 | ||
qt_host: mac | ||
qt_arch: '' | ||
qt_version: '6.6.1' | ||
qt_version: '6.7.0' | ||
qt_modules: 'qt5compat qtimageformats' | ||
qt_tools: '' | ||
|
||
|
@@ -160,13 +160,13 @@ jobs: | |
- name: Setup ccache | ||
if: (runner.os != 'Windows' || matrix.msystem == '') && inputs.build_type == 'Debug' | ||
uses: hendrikmuhs/[email protected].12 | ||
uses: hendrikmuhs/[email protected].13 | ||
with: | ||
key: ${{ matrix.os }}-qt${{ matrix.qt_ver }}-${{ matrix.architecture }} | ||
|
||
- name: Retrieve ccache cache (Windows MinGW-w64) | ||
if: runner.os == 'Windows' && matrix.msystem != '' && inputs.build_type == 'Debug' | ||
uses: actions/[email protected].0 | ||
uses: actions/[email protected].2 | ||
with: | ||
path: '${{ github.workspace }}\.ccache' | ||
key: ${{ matrix.os }}-mingw-w64-ccache-${{ github.run_id }} | ||
|
@@ -259,7 +259,6 @@ jobs: | |
wget "https://github.com/AppImageCommunity/AppImageUpdate/releases/download/continuous/AppImageUpdate-x86_64.AppImage" | ||
${{ github.workspace }}/.github/scripts/prepare_JREs.sh | ||
sudo apt install libopengl0 | ||
- name: Add QT_HOST_PATH var (Windows MSVC arm64) | ||
|
@@ -407,7 +406,7 @@ jobs: | |
if [ '${{ secrets.SPARKLE_ED25519_KEY }}' != '' ]; then | ||
brew install openssl@3 | ||
echo '${{ secrets.SPARKLE_ED25519_KEY }}' > ed25519-priv.pem | ||
signature=$(/usr/local/opt/openssl@3/bin/openssl pkeyutl -sign -rawin -in ${{ github.workspace }}/PrismLauncher.tar.gz -inkey ed25519-priv.pem | openssl base64 | tr -d \\n) | ||
signature=$(/usr/local/opt/openssl@3/bin/openssl pkeyutl -sign -rawin -in ${{ github.workspace }}/PrismLauncher.zip -inkey ed25519-priv.pem | openssl base64 | tr -d \\n) | ||
rm ed25519-priv.pem | ||
cat >> $GITHUB_STEP_SUMMARY << EOF | ||
### Artifact Information :information_source: | ||
|
@@ -496,7 +495,6 @@ jobs: | |
run: | | ||
cmake --install ${{ env.BUILD_DIR }} --prefix ${{ env.INSTALL_DIR }} | ||
for l in $(find ${{ env.INSTALL_DIR }} -type f); do l=${l#$(pwd)/}; l=${l#${{ env.INSTALL_DIR }}/}; l=${l#./}; echo $l; done > ${{ env.INSTALL_DIR }}/manifest.txt | ||
cd ${{ env.INSTALL_DIR }} | ||
tar --owner root --group root -czf ../PrismLauncher.tar.gz * | ||
|
@@ -505,9 +503,12 @@ jobs: | |
run: | | ||
cmake --install ${{ env.BUILD_DIR }} --prefix ${{ env.INSTALL_PORTABLE_DIR }} | ||
cmake --install ${{ env.BUILD_DIR }} --prefix ${{ env.INSTALL_PORTABLE_DIR }} --component portable | ||
for l in $(find ${{ env.INSTALL_PORTABLE_DIR }} -type f); do l=${l#$(pwd)/}; l=${l#${{ env.INSTALL_PORTABLE_DIR }}/}; l=${l#./}; echo $l; done > ${{ env.INSTALL_PORTABLE_DIR }}/manifest.txt | ||
# workaround to make portable installs to work on fedora | ||
mkdir ${{ env.INSTALL_PORTABLE_DIR }}/lib | ||
cp /lib/x86_64-linux-gnu/libbz2.so.1.0 ${{ env.INSTALL_PORTABLE_DIR }}/lib | ||
for l in $(find ${{ env.INSTALL_PORTABLE_DIR }} -type f); do l=${l#$(pwd)/}; l=${l#${{ env.INSTALL_PORTABLE_DIR }}/}; l=${l#./}; echo $l; done > ${{ env.INSTALL_PORTABLE_DIR }}/manifest.txt | ||
cd ${{ env.INSTALL_PORTABLE_DIR }} | ||
tar -czf ../PrismLauncher-portable.tar.gz * | ||
|
@@ -526,24 +527,16 @@ jobs: | |
chmod +x linuxdeploy-*.AppImage | ||
mkdir -p ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-{8,17}-openjdk | ||
mkdir -p ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib | ||
mkdir -p ${{ env.INSTALL_APPIMAGE_DIR }}/usr/plugins/iconengines | ||
cp -r ${{ github.workspace }}/JREs/jre8/* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-8-openjdk | ||
cp -r ${{ github.workspace }}/JREs/jre17/* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-17-openjdk | ||
cp -r ${{ runner.workspace }}/Qt/${{ matrix.qt_version }}/gcc_64/plugins/iconengines/* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/plugins/iconengines | ||
cp /usr/lib/x86_64-linux-gnu/libcrypto.so.1.1 ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ | ||
cp /usr/lib/x86_64-linux-gnu/libssl.so.1.1 ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ | ||
cp /usr/lib/x86_64-linux-gnu/libOpenGL.so.0* ${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/ | ||
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib" | ||
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-8-openjdk/lib/amd64/server" | ||
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-8-openjdk/lib/amd64" | ||
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-17-openjdk/lib/server" | ||
LD_LIBRARY_PATH="${LD_LIBRARY_PATH}:${{ env.INSTALL_APPIMAGE_DIR }}/usr/lib/jvm/java-17-openjdk/lib" | ||
export LD_LIBRARY_PATH | ||
chmod +x AppImageUpdate-x86_64.AppImage | ||
|
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
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Submodule shared-modules
updated
23 files
+2 −0 | CODEOWNERS | |
+2 −2 | SDL2/SDL2-no-libdecor.json | |
+3 −3 | SDL2/SDL2-with-libdecor.json | |
+0 −8 | gzdoom/gzdoom.json | |
+2 −2 | libdecor/libdecor.json | |
+0 −34 | libmad/Provide-Thumb-2-alternative-code-for-MAD_F_MLN.diff | |
+0 −12 | libmad/libmad-0.15.1b-cflags-O2.patch | |
+0 −146 | libmad/libmad-0.15.1b-cflags.patch | |
+0 −37 | libmad/libmad-0.15.1b-multiarch.patch | |
+0 −13 | libmad/libmad-0.15.1b-ppc.patch | |
+9 −42 | libmad/libmad.json | |
+0 −12 | libmad/libmad.thumb.diff | |
+0 −11 | libmad/mad.pc | |
+2 −2 | libsecret/libsecret.json | |
+7 −7 | luajit/luajit.json | |
+27 −0 | lzo/lzo.json | |
+0 −54 | qt4/disable-sslv3.patch | |
+0 −11 | qt4/fixgcc11.patch | |
+0 −31 | qt4/fixgcc9.patch | |
+0 −118 | qt4/qt4-4.8.7-minimal.json | |
+0 −514 | qt4/qt4-aarch64.patch | |
+0 −409 | qt4/qt4-openssl-1.1.patch | |
+22 −0 | squashfs-tools/squashfs-tools.json |
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
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
Oops, something went wrong.