From ef7666c356d902e05fcba662529d7a61a639feea Mon Sep 17 00:00:00 2001 From: Useful Stuffs <157041205+usefulstuffs@users.noreply.github.com> Date: Wed, 14 Feb 2024 15:22:58 +0100 Subject: [PATCH] Delete .github directory --- .github/workflows/build.yml | 57 ------------------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml deleted file mode 100644 index 37f532b..0000000 --- a/.github/workflows/build.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Build - -on: - push: - branches: [main] - pull_request: - branches: [main] - workflow_dispatch: - -jobs: - build: - runs-on: windows-2022 - defaults: - run: - shell: wsl-bash {0} - env: - WSLENV: GITHUB_OUTPUT - - steps: - - name: Checkout - uses: actions/checkout@v3 - - - name: Install WSL - uses: Vampire/setup-wsl@v2 - with: - distribution: Ubuntu-22.04 - - - name: Set up Visual Studio - run: | - PATH='/mnt/c/Program Files (x86)/Microsoft Visual Studio/Installer':$PATH - vs="$(vswhere.exe -latest -property installationPath | tr -d '\r')" - vs_installer.exe modify \ - --quiet --norestart --noUpdateInstaller \ - --installPath "$vs" \ - --add Microsoft.VisualStudio.Component.WinXP - - - name: Set up WSL - run: | - sudo apt-get update -q - sudo apt-get install -qy make nsis nsis-pluginapi mingw-w64-i686-dev cabextract - - - name: Extract updroots.exe - run: | - curl -fsSL http://download.windowsupdate.com/d/msdownload/update/software/secu/2015/03/rvkroots_3f2ce4676450c06f109b5b4e68bec252873ccc21.exe -o /tmp/rvkroots.exe - cabextract -d setup -F updroots.exe /tmp/rvkroots.exe - rm /tmp/rvkroots.exe - - - name: Build - id: build - run: | - make CI=1 SIGN=0 - echo "out=$(echo setup/LegacyUpdate-*.exe)" >> "$(wslpath -u "$GITHUB_OUTPUT")" - - - name: Upload Build Artifact - uses: actions/upload-artifact@v3 - with: - path: '${{ steps.build.outputs.out }}'