Skip to content

Commit

Permalink
agane agane
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Sep 8, 2024
1 parent d739cdc commit fa49b94
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |-
Expand All @@ -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
Expand Down

0 comments on commit fa49b94

Please sign in to comment.