CI: Temporarily disable Linux packaging
Seems that there's some issues with AppImage creation...
This commit is contained in:
parent
96b86acb4f
commit
2a6c06d4be
|
@ -90,51 +90,51 @@ jobs:
|
|||
path: "build/duckstation_libretro.dll.zip"
|
||||
|
||||
|
||||
linux-build:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2.3.1
|
||||
with:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Install packages
|
||||
shell: bash
|
||||
run: |
|
||||
sudo apt-get update
|
||||
sudo apt-get -y install cmake ninja-build ccache libsdl2-dev libgtk2.0-dev qtbase5-dev qtbase5-dev-tools qtbase5-private-dev qt5-default qttools5-dev
|
||||
|
||||
- name: Compile build
|
||||
shell: bash
|
||||
run: |
|
||||
mkdir build
|
||||
cd build
|
||||
cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDL_FRONTEND=ON -DBUILD_QT_FRONTEND=ON -DUSE_SDL2=ON -G Ninja ..
|
||||
ninja
|
||||
../appimage/generate-appimages.sh $(pwd)
|
||||
|
||||
- name: Upload SDL AppImage
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-sdl"
|
||||
path: "build/duckstation-sdl-x64.AppImage"
|
||||
|
||||
- name: Upload SDL AppImage zsync
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-sdl-zsync"
|
||||
path: "build/duckstation-sdl-x64.AppImage.zsync"
|
||||
|
||||
- name: Upload Qt AppImage
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-qt"
|
||||
path: "build/duckstation-qt-x64.AppImage"
|
||||
|
||||
- name: Upload Qt AppImage zsync
|
||||
uses: actions/upload-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-qt-zsync"
|
||||
path: "build/duckstation-qt-x64.AppImage.zsync"
|
||||
# linux-build:
|
||||
# runs-on: ubuntu-20.04
|
||||
# steps:
|
||||
# - uses: actions/checkout@v2.3.1
|
||||
# with:
|
||||
# fetch-depth: 0
|
||||
#
|
||||
# - name: Install packages
|
||||
# shell: bash
|
||||
# run: |
|
||||
# sudo apt-get update
|
||||
# sudo apt-get -y install cmake ninja-build ccache libsdl2-dev libgtk2.0-dev qtbase5-dev qtbase5-dev-tools qtbase5-private-dev qt5-default qttools5-dev
|
||||
#
|
||||
# - name: Compile build
|
||||
# shell: bash
|
||||
# run: |
|
||||
# mkdir build
|
||||
# cd build
|
||||
# cmake -DCMAKE_BUILD_TYPE=Release -DBUILD_SDL_FRONTEND=ON -DBUILD_QT_FRONTEND=ON -DUSE_SDL2=ON -G Ninja ..
|
||||
# ninja
|
||||
# ../appimage/generate-appimages.sh $(pwd)
|
||||
#
|
||||
# - name: Upload SDL AppImage
|
||||
# uses: actions/upload-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-sdl"
|
||||
# path: "build/duckstation-sdl-x64.AppImage"
|
||||
#
|
||||
# - name: Upload SDL AppImage zsync
|
||||
# uses: actions/upload-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-sdl-zsync"
|
||||
# path: "build/duckstation-sdl-x64.AppImage.zsync"
|
||||
#
|
||||
# - name: Upload Qt AppImage
|
||||
# uses: actions/upload-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-qt"
|
||||
# path: "build/duckstation-qt-x64.AppImage"
|
||||
#
|
||||
# - name: Upload Qt AppImage zsync
|
||||
# uses: actions/upload-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-qt-zsync"
|
||||
# path: "build/duckstation-qt-x64.AppImage.zsync"
|
||||
|
||||
|
||||
linux-libretro-build:
|
||||
|
@ -211,7 +211,8 @@ jobs:
|
|||
|
||||
|
||||
create-release:
|
||||
needs: [windows-build, windows-libretro-build, linux-build, linux-libretro-build, android-build]
|
||||
#needs: [windows-build, windows-libretro-build, linux-build, linux-libretro-build, android-build]
|
||||
needs: [windows-build, windows-libretro-build, linux-libretro-build, android-build]
|
||||
runs-on: "ubuntu-latest"
|
||||
if: github.ref == 'refs/heads/master'
|
||||
steps:
|
||||
|
@ -225,25 +226,25 @@ jobs:
|
|||
with:
|
||||
name: "windows-libretro-x64"
|
||||
|
||||
- name: Download SDL AppImage Artifact
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-sdl"
|
||||
|
||||
- name: Download SDL AppImage zsync Artifact
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-sdl-zsync"
|
||||
|
||||
- name: Download Qt AppImage Artifact
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-qt"
|
||||
|
||||
- name: Download Qt AppImage zsync Artifact
|
||||
uses: actions/download-artifact@v1
|
||||
with:
|
||||
name: "linux-x64-appimage-qt-zsync"
|
||||
# - name: Download SDL AppImage Artifact
|
||||
# uses: actions/download-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-sdl"
|
||||
#
|
||||
# - name: Download SDL AppImage zsync Artifact
|
||||
# uses: actions/download-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-sdl-zsync"
|
||||
#
|
||||
# - name: Download Qt AppImage Artifact
|
||||
# uses: actions/download-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-qt"
|
||||
#
|
||||
# - name: Download Qt AppImage zsync Artifact
|
||||
# uses: actions/download-artifact@v1
|
||||
# with:
|
||||
# name: "linux-x64-appimage-qt-zsync"
|
||||
|
||||
- name: Download Linux libretro core
|
||||
uses: actions/download-artifact@v1
|
||||
|
@ -264,11 +265,11 @@ jobs:
|
|||
files: |
|
||||
windows-x64/duckstation-windows-x64-release.zip
|
||||
windows-libretro-x64/duckstation_libretro.dll.zip
|
||||
linux-x64-appimage-sdl/duckstation-sdl-x64.AppImage
|
||||
linux-x64-appimage-sdl-zsync/duckstation-sdl-x64.AppImage.zsync
|
||||
linux-x64-appimage-qt/duckstation-qt-x64.AppImage
|
||||
linux-x64-appimage-qt-zsync/duckstation-qt-x64.AppImage.zsync
|
||||
linux-libretro/duckstation_libretro.so.zip
|
||||
linux-libretro/duckstation_libretro_android_aarch64.so.zip
|
||||
android/duckstation-android-aarch64.apk
|
||||
|
||||
# linux-x64-appimage-sdl/duckstation-sdl-x64.AppImage
|
||||
# linux-x64-appimage-sdl-zsync/duckstation-sdl-x64.AppImage.zsync
|
||||
# linux-x64-appimage-qt/duckstation-qt-x64.AppImage
|
||||
# linux-x64-appimage-qt-zsync/duckstation-qt-x64.AppImage.zsync
|
||||
|
|
|
@ -3,6 +3,8 @@
|
|||
|
||||
**Latest Windows, Linux (AppImage), and Libretro Builds:** https://github.com/stenzek/duckstation/releases/tag/latest
|
||||
|
||||
**NOTE:** Linux builds are temporarily disabled due to an issue with AppImage creation. Once this is sorted out they will be re-enabled again. You can still build from source in the meantime.
|
||||
|
||||
**Game Compatibility List:** https://docs.google.com/spreadsheets/d/1H66MxViRjjE5f8hOl5RQmF5woS1murio2dsLn14kEqo/edit?usp=sharing
|
||||
|
||||
DuckStation is an simulator/emulator of the Sony PlayStation(TM) console, focusing on playability, speed, and long-term maintainability. Accuracy is not the main focus of the emulator, but the goal is to be as accurate as possible while maintaining performance suitable for low-end devices. "Hack" options are discouraged, the default configuration should support all playable games with only some of the enhancements having compatibility issues.
|
||||
|
|
Loading…
Reference in New Issue