Skip to content

Commit

Permalink
not sure why it's not finding atrac
Browse files Browse the repository at this point in the history
  • Loading branch information
Dextinfire committed Oct 5, 2024
1 parent caa2328 commit 7288c4f
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
run: |
./build-deps.ps1 -Arg1 x64
shell: pwsh
- name: Setup Dependencies Linux/MacOS
- name: Setup Dependencies Linux/MacOS/Android
if: contains(matrix.os_name, 'macos') || contains(matrix.os_name, 'linux') || contains(matrix.os_name, 'android')
run: |-
pushd vendor
Expand All @@ -146,6 +146,7 @@ jobs:
cp src/libatrac9.h ../include/libatrac9/
popd
echo "LIBATRAC9DIR=${{ github.workspace }}/vendor/LibAtrac9" >> $GITHUB_ENV
find "${{ github.workspace }}/vendor/LibAtrac9"
- 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'
Expand All @@ -164,9 +165,9 @@ jobs:
'-DVCPKG_HOST_TRIPLET=${{ matrix.host_triplet }}',
'-DVCPKG_BUILD_TYPE=release'
${{ (matrix.os_name == 'android') && ',
"-DCMAKE_TOOLCHAIN_FILE=$ANDROID_NDK_HOME/build/cmake/android.toolchain.cmake",
"-DANDROID_ABI=$ABI",
"-DANDROID_PLATFORM=android-$MINSDKVERSION"' || '' }}
"-DCMAKE_TOOLCHAIN_FILE=${{env.ANDROID_NDK_HOME}}/build/cmake/android.toolchain.cmake",
"-DANDROID_ABI=${{env.ABI}}",
"-DANDROID_PLATFORM=android-${{env.MINSDKVERSION}}"' || '' }}
]
buildPreset: CI-Build

Expand Down Expand Up @@ -295,6 +296,7 @@ jobs:
macos-arm64: ${{steps.get_jobs_status.outputs.macos-arm64}}
macos-x64: ${{steps.get_jobs_status.outputs.macos-x64}}
switch: ${{steps.get_jobs_status.outputs.switch}}
android: ${{steps.get_jobs_status.outputs.android}}
Details:
${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}

0 comments on commit 7288c4f

Please sign in to comment.