Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
92341ba
fix(ci): Exit with subprocess return code in run_ci.py
esafak Sep 1, 2025
f676a53
Ensure subprocess is called with correct working directory
esafak Sep 2, 2025
0046a37
Fix formatting, install pyfory in openj9 and Java tests for xlang
esafak Sep 2, 2025
7638af3
Fix formatting
esafak Sep 2, 2025
c7a1a99
Attempt to fix type_id=None bug, remove Java 8 since fory-format requ…
esafak Sep 2, 2025
7e50559
fix java8 ut
chaokunyang Sep 2, 2025
1b9e7c5
fix graavlm build
chaokunyang Sep 2, 2025
57c278b
skip fory format install for integration tests
chaokunyang Sep 2, 2025
d6f2d6a
lint java code
chaokunyang Sep 2, 2025
4528647
add java8 back
chaokunyang Sep 2, 2025
9654208
fix skip fory-format on java8
chaokunyang Sep 2, 2025
9296ca4
fix skip fory-testsuite
chaokunyang Sep 2, 2025
b84f496
fix native-image.properties
chaokunyang Sep 2, 2025
6fdb74d
fix javadoc
chaokunyang Sep 2, 2025
c86c545
use jdk 11 for integration tests
chaokunyang Sep 2, 2025
c53a4c6
attempt to fix python CI bazel error
esafak Sep 2, 2025
f421ce0
run bazel sync --configure first
esafak Sep 2, 2025
95d55fd
run bazel sync --configure first
esafak Sep 2, 2025
ca76174
run bazel fetch
esafak Sep 2, 2025
a1298bb
restrict bazel fetch scope
esafak Sep 2, 2025
1ec9d2e
Use FunctionSerializer for functions
esafak Sep 2, 2025
ff42f2d
Restore install_bazel_windows
esafak Sep 2, 2025
e5713c3
E721: Use isinstance for type check
esafak Sep 2, 2025
a623110
fix formatting, integration test pom.xml
esafak Sep 2, 2025
dc44a39
reformat two files
esafak Sep 2, 2025
fc4e557
reformat one file
esafak Sep 2, 2025
6af6b23
fix graalvm init error
chaokunyang Sep 2, 2025
d805324
fix ObjectStreamSerializer$1
chaokunyang Sep 2, 2025
c9fcb50
fix lambda init
chaokunyang Sep 2, 2025
b79b206
use serializable func
chaokunyang Sep 2, 2025
9cb0a29
fix lmabda lazy init
chaokunyang Sep 2, 2025
fb2da8f
register lamdba
chaokunyang Sep 2, 2025
dd1afa6
ensureSerializersCompiled for proxy
chaokunyang Sep 2, 2025
7e452c2
refine exception msg for lambda serialzier
chaokunyang Sep 2, 2025
5bb7521
init proxy serializer
chaokunyang Sep 2, 2025
cc7c924
move proxy at static
chaokunyang Sep 2, 2025
f3f2759
add TestInvocationHandler for build time init
chaokunyang Sep 2, 2025
610ca01
fix proxy
chaokunyang Sep 2, 2025
ea85b81
fix proxy serializer init
chaokunyang Sep 2, 2025
1cfbb47
add serialization-config.json
chaokunyang Sep 2, 2025
ae937d9
fix config
chaokunyang Sep 2, 2025
07b37de
move proxy-config.json
chaokunyang Sep 2, 2025
32ac097
add proxy-config.json
chaokunyang Sep 2, 2025
62d1ff0
fix proxy as lambda
chaokunyang Sep 2, 2025
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
4 changes: 2 additions & 2 deletions ci/run_ci.py
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ def run_shell_script(command, *args):
cmd = [bash_path, script_path, command]
cmd.extend(args)
logging.info(f"Falling back to shell script with bash: {' '.join(cmd)}")
return subprocess.call(cmd)
sys.exit(subprocess.call(cmd))
else:
logging.error(
"Bash is not available on this Windows system. Cannot run shell script."
Expand All @@ -101,7 +101,7 @@ def run_shell_script(command, *args):
cmd = [script_path, command]
cmd.extend(args)
logging.info(f"Falling back to shell script: {' '.join(cmd)}")
return subprocess.call(cmd)
sys.exit(subprocess.call(cmd))


def parse_args():
Expand Down
Loading