Skip to content

Commit

Permalink
Debugging
Browse files Browse the repository at this point in the history
Signed-off-by: Alex J Lennon <[email protected]>
  • Loading branch information
ajlennon committed Jul 20, 2024
1 parent 9be6ed1 commit 93a5906
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/actions/compile_gdextension/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ runs:
fi
- name: Build Opus (Linux)
if: runner.os == 'Linux' && inputs.platform == 'linux'
if: inputs.platform == 'linux'
shell: bash
run: |
echo "::group::🛠️ Opus Compilation (Linux) 🛠️"
Expand All @@ -101,13 +101,13 @@ runs:
make
- name: Build Opus (MacOS)
if: runner.os == 'MacOS'
if: inputs.platform == 'macos'
shell: bash
run: |
echo "::group::🛠️ Opus Compilation (MacOS TBD) 🛠️"
- name: Build Opus (iOS)
if: runner.os == 'iOS'
if: inputs.platform == 'ios'
shell: bash
run: |
echo "::group::🛠️ Opus Compilation (iOS) 🛠️"
Expand Down Expand Up @@ -167,7 +167,7 @@ runs:
uses: microsoft/setup-msbuild@v2

- name: Build Opus (Windows)
if: runner.os == 'Windows'
if: inputs.platform == 'Windows'
shell: powershell
run: |
echo "::group::🛠️ Opus Compilation 🛠️"
Expand Down

0 comments on commit 93a5906

Please sign in to comment.