-
-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
binaries have been moved to the release archives.
updated .vscode/c_cpp_props fixed readme urls web: fixed bigint mismatch. Added patch. Returned chrono usage. Updated Emscripten. telemetry integration has been simplified.
- Loading branch information
1 parent
e689306
commit 838bb01
Showing
44 changed files
with
168 additions
and
240 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,2 @@ | ||
# Normalize EOL for all files that Git considers text files. | ||
* text=auto eol=lf | ||
|
||
# Ignore some files when exporting to a ZIP. | ||
/.clang-format export-ignore | ||
/.gitattributes export-ignore | ||
/.gitignore export-ignore | ||
/.gitmodules export-ignore | ||
/.github export-ignore | ||
/LICENSE export-ignore | ||
/SConstruct export-ignore | ||
/Doxyfile export-ignore | ||
/*.* export-ignore | ||
/src export-ignore | ||
/godot-cpp export-ignore | ||
/jni export-ignore | ||
/patches export-ignore | ||
/images export-ignore | ||
/docs export-ignore | ||
/dd3d_web_build export-ignore |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,112 @@ | ||
name: 📈 Upload new draft artifacts | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
# Stop the same workflow actions | ||
concurrency: | ||
group: ${{github.workflow}}-${{github.ref}} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
get_version: | ||
name: Get the current version | ||
runs-on: ubuntu-latest | ||
outputs: | ||
version: ${{steps.getversion.outputs.version}} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
sparse-checkout: src/version.h | ||
|
||
- name: Get library version | ||
id: getversion | ||
shell: bash | ||
env: | ||
REF: ${{github.ref_name}} | ||
run: | | ||
# Get lib version | ||
source_file="src/version.h" | ||
major=$(grep -oP '(?<=#define DD3D_MAJOR )\d+' "$source_file") | ||
minor=$(grep -oP '(?<=#define DD3D_MINOR )\d+' "$source_file") | ||
patch=$(grep -oP '(?<=#define DD3D_PATCH )\d+' "$source_file") | ||
version_string="$major.$minor.$patch" | ||
echo "version=$version_string" >> $GITHUB_OUTPUT | ||
echo "Library Version found in file \`version.h\`: \`$version_string\`" >> $GITHUB_STEP_SUMMARY | ||
create_release_artifact: | ||
name: Create release artifact | ||
needs: get_version | ||
runs-on: ubuntu-latest | ||
outputs: | ||
zipname: ${{steps.zip.outputs.zipname}} | ||
|
||
env: | ||
ADDON_FOLDER_NAME: debug_draw_3d | ||
ADDON_ROOT_FOLDER_NAME: debug_draw_3d-${{needs.get_version.outputs.version}} | ||
RELEASE_PREFIX_NAME: debug-draw-3d | ||
DOWNLOAD_ARTIFACT_NAME: .gdextension_libs_production | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
path: ${{env.ADDON_ROOT_FOLDER_NAME}} # godot asset library by default skips root folder | ||
sparse-checkout: | | ||
addons | ||
sparse-checkout-cone-mode: false | ||
|
||
- name: Download Binaries | ||
uses: dawidd6/action-download-artifact@v6 | ||
with: | ||
workflow: gdextension_build.yml | ||
branch: ${{github.ref_name}} | ||
name: ${{env.DOWNLOAD_ARTIFACT_NAME}} | ||
name_is_regexp: false | ||
search_artifacts: true | ||
skip_unpack: false | ||
path: ${{env.ADDON_ROOT_FOLDER_NAME}}/addons/${{env.ADDON_FOLDER_NAME}}/libs | ||
#event: workflow_dispatch | ||
|
||
- name: Create ZIP archive | ||
id: zip | ||
run: | | ||
zipname="${{env.RELEASE_PREFIX_NAME}}_${{needs.get_version.outputs.version}}.zip" | ||
zip -r $zipname ${{env.ADDON_ROOT_FOLDER_NAME}}/addons | ||
echo "zipname=$zipname" >> $GITHUB_OUTPUT | ||
- name: Upload Artifact | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
name: ${{steps.zip.outputs.zipname}} | ||
retention-days: 7 | ||
path: ${{steps.zip.outputs.zipname}} | ||
|
||
upload_github_draft: | ||
name: Upload GitHub draft | ||
needs: | ||
- get_version | ||
- create_release_artifact | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Download Binaries | ||
uses: actions/download-artifact@v4 | ||
with: | ||
merge-multiple: true | ||
|
||
- name: Upload Draft Assets | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
draft: true | ||
tag_name: ${{needs.get_version.outputs.version}} | ||
files: ${{needs.create_release_artifact.outputs.zipname}} | ||
generate_release_notes: true | ||
append_body: true | ||
fail_on_unmatched_files: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.05 MB
addons/debug_draw_3d/libs/libdd3d.android.template_release.arm32.so
Binary file not shown.
Binary file removed
BIN
-1.12 MB
addons/debug_draw_3d/libs/libdd3d.android.template_release.arm64.so
Binary file not shown.
Binary file removed
BIN
-1.22 MB
addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_32.so
Binary file not shown.
Binary file removed
BIN
-1.15 MB
addons/debug_draw_3d/libs/libdd3d.android.template_release.x86_64.so
Binary file not shown.
Binary file removed
BIN
-919 KB
addons/debug_draw_3d/libs/libdd3d.ios.template_debug.universal.dylib
Binary file not shown.
Binary file removed
BIN
-614 KB
addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.dylib
Binary file not shown.
Binary file removed
BIN
-903 KB
addons/debug_draw_3d/libs/libdd3d.ios.template_release.universal.enabled.dylib
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-3.5 MB
addons/debug_draw_3d/libs/libdd3d.linux.template_release.x86_64.enabled.so
Binary file not shown.
Binary file not shown.
33 changes: 0 additions & 33 deletions
33
addons/debug_draw_3d/libs/libdd3d.macos.editor.universal.framework/Resources/Info.plist
This file was deleted.
Oops, something went wrong.
Binary file removed
BIN
-2.35 MB
...raw_3d/libs/libdd3d.macos.editor.universal.framework/libdd3d.macos.editor.universal.dylib
Binary file not shown.
Oops, something went wrong.