Skip to content

Commit 55a11fa

Browse files
aliasbinmanCopilotaliasbinman
committed
Texture compression fixups (#12939) a23e2ba586
* Add rive decoders to native runtime build * Updates * Update build.sh * Potential fix for pull request finding * Update deploy_tests.py * Update build.sh Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Co-authored-by: John White <aliasbinman@gmail.com>
1 parent d7d414d commit 55a11fa

2 files changed

Lines changed: 6 additions & 2 deletions

File tree

.rive_head

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
50fdb3bb9fe4efb95a7cf94f005d4ea1ad86e5c7
1+
a23e2ba586f435afcc8b7047a4d71069d508ebeb

tests/deploy_tests.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -627,7 +627,11 @@ def launch_player(test_harness_server):
627627
cmd += ["--options", args.options]
628628
cmd = update_cmd_to_deploy_on_target(cmd, test_harness_server, env)
629629

630-
rivsqueue.put(args.src)
630+
if os.path.isdir(args.src):
631+
for riv in glob.iglob(os.path.join(args.src, "*.riv")):
632+
rivsqueue.put(riv)
633+
else:
634+
rivsqueue.put(args.src)
631635
player = CheckProcess(cmd, env)
632636
player.start()
633637
return player

0 commit comments

Comments
 (0)