diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b340940b5c..cc5efa6bda 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,6 +25,26 @@ jobs: manifest-path: Distribution/flatpak.yml bundle: DolphinMPN-flatpak-linux-x86_64.flatpak + build_deb: + runs-on: ubuntu-24.04 + steps: + - uses: actions/checkout@v2 + - name: Setup Submodules + run: git submodule update --init --recursive + - name: Setup Packages + run: | + sudo add-apt-repository ppa:okirby/qt6-backports + sudo apt update + sudo apt install checkinstall qt6-base build-essential git cmake ffmpeg libavcodec-dev libavformat-dev libavutil-dev libswscale-dev libevdev-dev libusb-1.0-0-dev libxrandr-dev libxi-dev libpangocairo-1.0-0 qt6-base-private-dev libqt6svg6-dev libbluetooth-dev libasound2-dev libpulse-dev libgl1-mesa-dev libcurl4-openssl-dev + - name: Build + run: | + mkdir -p build && cd build && cmake .. -G Ninja -DDISTRIBUTOR="Mario Party Netplay" && ninja -j8 && checkinstall --install=no && mkidr ./build/deb/ && mv *.deb ./build/deb/ + - name: Upload Build Artifact + uses: actions/upload-artifact@v4 + with: + name: DolphinMPN-ubuntu-24.04-linux-x86_64 + path: build/deb/ + build_macos: runs-on: macos11-x64-nayla steps: