From fa49b948b1281ff7f4fed2f28ef900749c419708 Mon Sep 17 00:00:00 2001 From: Dextinfire <> Date: Sat, 7 Sep 2024 17:59:06 -0700 Subject: [PATCH] agane agane --- .github/workflows/pipeline.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/pipeline.yml b/.github/workflows/pipeline.yml index 9a676aa1..7f4bf535 100644 --- a/.github/workflows/pipeline.yml +++ b/.github/workflows/pipeline.yml @@ -56,10 +56,8 @@ jobs: - name: Build Atrac9 Windows if: matrix.os == 'windows-latest' run: | - $ErrorActionPreference = 'silentlyContinue' ./build-deps.ps1 -Arg1 x64 - if ((Test-Path -LiteralPath variable:\LASTEXITCODE)) { exit $LASTEXITCODE } - shell: powershell -Command "& '{0}'" + shell: pwsh - name: Setup Dependencies Linux/MacOS if: matrix.os =='macos-latest' || matrix.os == 'ubuntu-latest' run: |- @@ -76,7 +74,10 @@ jobs: cp src/libatrac9.h ../include/libatrac9/ popd # echo "LIBATRAC9DIR=vendor/LibAtrac9" >> $GITHUB_ENV - - run: sudo apt-get install nasm libx11-dev libxft-dev libxext-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev libibus-1.0-dev + - name: Install Dependencies Linux + run: sudo apt-get install nasm libx11-dev libxft-dev libxext-dev libwayland-dev libxkbcommon-dev libegl1-mesa-dev libibus-1.0-dev libxrandr-dev + - name: Install Dependencies Mac + run: brew install nasm if: matrix.os == 'ubuntu-latest' - name: Run CMake with vcpkg.json manifest uses: lukka/run-cmake@v10