-
-
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.
- Loading branch information
1 parent
f904248
commit e480f5b
Showing
1 changed file
with
12 additions
and
12 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 |
---|---|---|
|
@@ -123,24 +123,24 @@ jobs: | |
submodules: recursive | ||
|
||
- name: Install Android NDK r23c | ||
uses: nttld/[email protected].1 | ||
uses: nttld/[email protected].2 | ||
id: setup-ndk | ||
with: | ||
ndk-version: r23c | ||
link-to-sdk: true | ||
local-cache: true | ||
|
||
# TODO revisit after some updates of nttld/setup-ndk | ||
- name: Restore Android Symlinks | ||
run: | | ||
directory="${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin" | ||
find "$directory" -type l | while read link; do | ||
current_target=$(readlink "$link") | ||
new_target="$directory/$(basename "$current_target")" | ||
ln -sf "$new_target" "$link" | ||
echo "Changed $(basename "$link") from $current_target to $new_target" | ||
done | ||
## TODO revisit after some updates of nttld/setup-ndk | ||
#- name: Restore Android Symlinks | ||
# run: | | ||
# directory="${{ steps.setup-ndk.outputs.ndk-path }}/toolchains/llvm/prebuilt/linux-x86_64/bin" | ||
# | ||
# find "$directory" -type l | while read link; do | ||
# current_target=$(readlink "$link") | ||
# new_target="$directory/$(basename "$current_target")" | ||
# ln -sf "$new_target" "$link" | ||
# echo "Changed $(basename "$link") from $current_target to $new_target" | ||
# done | ||
|
||
- name: Compile GDExtension | ||
uses: ./.github/actions/compile_gdextension | ||
|