From 61ef3e55a96d589d176bf7724e4d41a1af84b6c3 Mon Sep 17 00:00:00 2001 From: Nayla Hanegan Date: Fri, 29 Sep 2023 08:46:53 -0400 Subject: [PATCH] remove broken workflows --- .github/workflows/linux.yml | 45 ------------------------------------- .github/workflows/nsis.yml | 43 ----------------------------------- 2 files changed, 88 deletions(-) delete mode 100644 .github/workflows/linux.yml delete mode 100644 .github/workflows/nsis.yml diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml deleted file mode 100644 index 383e674a69..0000000000 --- a/.github/workflows/linux.yml +++ /dev/null @@ -1,45 +0,0 @@ -name: Linux CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - pull_request: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: ubuntu-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - # Submoudle - - name: Checkout Submodles - run: git submodule update --init --recursive - # Setup CMake - - name: Setup CMake - uses: Symbitic/install-cmake@v0.1.1 - with: - platform: linux - # Setup Packages - - name: Setup Packages - run: sudo apt update && sudo apt upgrade && sudo apt install p7zip-full 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 libbluetooth-dev libasound2-dev libpulse-dev libgl1-mesa-dev libudev-dev libsystemd-dev dpkg-dev - # Run CMake - - name: Run CMake - run: mkdir build && cd build && cmake .. -G Ninja -DLINUX_LOCAL_DEV=true -DCPACK_PACKAGE_CONTACT="Mario Party Netplay" -DDISTRIBUTOR="Mario Party Netplay" - # Build Project - - name: Run Make - run: cd build && ninja -j$(nproc) - # Configure Dolphin - - name: Configure Dolphin - run: cd build && cp -r ../Data/Sys/ Binaries/ && cp -r ../Data/User/ Binaries/ && cp -r ../Data/dolphin-mpn.png Binaries/ && touch Binaries/portable.txt && mv Binaries/User Binaries/user - # Upload Artifact - - name: Upload Build Artifact - uses: actions/upload-artifact@v2 - with: - name: DolphinMPN-Linux - path: /home/runner/work/Dolphin-MPN/Dolphin-MPN/build/Binaries/ \ No newline at end of file diff --git a/.github/workflows/nsis.yml b/.github/workflows/nsis.yml deleted file mode 100644 index 83f3090214..0000000000 --- a/.github/workflows/nsis.yml +++ /dev/null @@ -1,43 +0,0 @@ -name: Windows NSIS CI - -# Controls when the action will run. Triggers the workflow on push or pull request -# events but only for the master branch -on: - push: - pull_request: - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - # This workflow contains a single job called "build" - build: - # The type of runner that the job will run on - runs-on: windows-latest - - # Steps represent a sequence of tasks that will be executed as part of the job - steps: - # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - - uses: actions/checkout@v2 - # Submoudle - - name: Checkout Submodles - run: git submodule update --init --recursive - # Setup MSBuild For Later Usage - - name: Setup MSBuild - uses: microsoft/setup-msbuild@v1.0.2 - with: - vs-version: '16.6.2' - # Run MSBuild - - name: Build Solution - run: msbuild "D:\a\Dolphin-MPN\Dolphin-MPN\Source\dolphin-emu.sln" /verbosity:minimal /property:Configuration=Release /property:Platform=x64 - # Package NSIS - - name: Package NSIS - uses: joncloud/makensis-action@v4 - with: - script-file: "D:/a/Dolphin-MPN/Dolphin-MPN/Installer/Installer.nsi" - arguments: "/DDOLPHIN_ARCH=x64 /PRODUCT_VERSION=MPN /V3" - - # Upload Artifact - - name: Upload Build Artifact - uses: actions/upload-artifact@v2 - with: - name: DolphinMPN-win32 - path: D:\a\Dolphin-MPN\Dolphin-MPN\Binary\x64