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 bdbf090
Show file tree
Hide file tree
Showing 3 changed files with 392 additions and 7 deletions.
14 changes: 8 additions & 6 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 @@ -75,9 +73,13 @@ jobs:
cp bin/libatrac9.a ../libs/
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'
echo "LIBATRAC9DIR=vendor/LibAtrac9" >> $GITHUB_ENV
- 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 bdbf090

Please sign in to comment.