Skip to content

Commit

Permalink
Update build-windows.yml
Browse files Browse the repository at this point in the history
Try try again.
  • Loading branch information
razterizer authored Sep 14, 2024
1 parent 65bf738 commit 66e6d9d
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/build-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,18 +39,16 @@ jobs:
- name: Unzip OpenAL Soft
run: |
Expand-Archive -Path $env:GITHUB_WORKSPACE\..\openal-soft.zip -DestinationPath $env:GITHUB_WORKSPACE\..
# Step to list the directory structure of OpenAL Soft after unzipping
- name: List contents of openal-soft directory
run: |
Get-ChildItem -Recurse $env:GITHUB_WORKSPACE\..\openal-soft
# Step 6: Copy OpenAL Soft files to 3rdparty directories
- name: Copy OpenAL Soft files
run: |
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft\include\AL\* -Destination $env:GITHUB_WORKSPACE\..\3rdparty\include\OpenAL_Soft\ -Force
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft\bin\Win64\OpenAL32.dll -Destination $env:GITHUB_WORKSPACE\..\3rdparty\lib\ -Force
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft\lib\Win64\OpenAL32.lib -Destination $env:GITHUB_WORKSPACE\..\3rdparty\lib\ -Force
# Copy OpenAL Soft headers
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft-1.23.1-bin\include\AL\* -Destination $env:GITHUB_WORKSPACE\..\3rdparty\include\OpenAL_Soft\ -Force
# Copy OpenAL32.dll (assuming it's in the bin folder)
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft-1.23.1-bin\bin\OpenAL32.dll -Destination $env:GITHUB_WORKSPACE\..\3rdparty\lib\ -Force
# Copy OpenAL32.lib (assuming it's in the libs folder)
Copy-Item -Path $env:GITHUB_WORKSPACE\..\openal-soft-1.23.1-bin\libs\OpenAL32.lib -Destination $env:GITHUB_WORKSPACE\..\3rdparty\lib\ -Force
# Step 7: Fix step for libsndfile (if needed)

Expand Down

0 comments on commit 66e6d9d

Please sign in to comment.