Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Use godot build now that it merged #66

Merged
merged 7 commits into from
Apr 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/build_android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,11 +58,10 @@ jobs:
cmake --build ${{ github.workspace }}/OpenCL-SDK/build --target install
- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: android
arch: ${{ matrix.arch }}
godot-cpp-location: godot-cpp
float-precision: ${{ matrix.precision }}
build-target-type: template_release

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
fetch-depth: 0

- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: ios
arch: ${{ matrix.arch }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
cmake --build ${{ github.workspace }}/OpenCL-SDK/build --target install
- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: linux
arch: ${{ matrix.arch }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build_macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
submodules: true
fetch-depth: 0
- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: macos
arch: ${{ matrix.arch }}
Expand All @@ -45,7 +45,7 @@ jobs:
build-target-type: template_release

- name: Mac Sign
uses: ughuuu/godot-cpp-template/.github/actions/sign@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/sign@main
with:
FRAMEWORK_PATH: bin/addons/godot_whisper/bin/libgodot_whisper.macos.template_release${{ matrix.mac_precision_extension }}.universal.framework
SIGN_FLAGS: "--deep"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build_web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
fetch-depth: 0

- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: web
arch: ${{ matrix.arch }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/build_windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
cmake --build ${{ github.workspace }}/OpenCL-SDK/build --target install
- name: 🔗 GDExtension Build
uses: ughuuu/godot-cpp-template/.github/actions/build@add-more-stuff/options-to-build
uses: godotengine/godot-cpp-template/.github/actions/build@main
with:
platform: windows
arch: ${{ matrix.arch }}
Expand All @@ -85,4 +85,3 @@ jobs:
${{ github.workspace }}/bin/addons/godot_whisper/whisper_dock.tscn
${{ github.workspace }}/bin/addons/godot_whisper/models/gglm-tiny.en.bin
if-no-files-found: error
compression-level: 9
2 changes: 1 addition & 1 deletion .github/workflows/runner.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,4 @@ jobs:
permissions:
contents: write
needs: [build_android, build_ios, build_linux, build_macos, build_windows, build_web]
uses: ./.github/workflows/release.yml
uses: ./.github/workflows/release.yml
Loading