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 b4a4d0e
Show file tree
Hide file tree
Showing 3 changed files with 391 additions and 6 deletions.
12 changes: 7 additions & 5 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,8 +74,12 @@ 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
if: matrix.os == 'ubuntu-latest'
- 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
if: matrix.os_name == 'linux'
- name: Install Dependencies Mac
run: brew install nasm
if: matrix.os_name == 'macos'
- name: Run CMake with vcpkg.json manifest
uses: lukka/run-cmake@v10
with:
Expand Down
Loading

0 comments on commit b4a4d0e

Please sign in to comment.