Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <ajlennon@dynamicdevices.co.uk>
  • Loading branch information
ajlennon committed Jul 20, 2024
1 parent 3829ef8 commit 16e5857
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/actions/compile_gdextension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,18 @@ runs:
cd build
make
- name: Build Opus (Android)
if: runner.os == 'Android'
- name: Build Opus (Android arm32)
if: runner.os == 'Android' and ${{inputs.arch}} =="arm32"
shell: bash
run: |
echo "::group::🛠️ Opus Compilation 🛠️"
cd opus
cmake .. -DCMAKE_TOOLCHAIN_FILE=${ANDROID_HOME}/ndk/25.2.9519653/build/cmake/android.toolchain.cmake -DANDROID_ABI=armeabi-v7a
cd build
make
- name: Build Opus (Android arm64)
if: runner.os == 'Android' and ${{inputs.arch}} =="arm64"
shell: bash
run: |
echo "::group::🛠️ Opus Compilation 🛠️"
Expand All @@ -120,6 +130,16 @@ runs:
cd build
make
- name: Build Opus (Android x86_64)
if: runner.os == 'Android' and ${{inputs.arch}} =="x86_64"
shell: bash
run: |
echo "::group::🛠️ Opus Compilation 🛠️"
cd opus
cmake .. -DCMAKE_TOOLCHAIN_FILE=${ANDROID_HOME}/ndk/25.2.9519653/build/cmake/android.toolchain.cmake
cd build
make
- name: Add msbuild to PATH
if: runner.os == 'Windows'
uses: microsoft/setup-msbuild@v2
Expand Down

0 comments on commit 16e5857

Please sign in to comment.