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

Support for --jvm option in Enso runner #10374

Merged
merged 29 commits into from
Jul 6, 2024
Merged
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
43929db
Support for --jvm option in Enso launcher
JaroslavTulach Jun 26, 2024
7d31eab
Iterate installed GraalVM runtimes
JaroslavTulach Jun 26, 2024
67f1632
feat: engineDistributionRoot parameter
4e6 Jun 26, 2024
e67cc87
Generate NI executable as ./built-distribution/enso-engine-0.0.0-dev-…
JaroslavTulach Jun 26, 2024
8f18b2f
Ignore --jvm when already in the right JVM
JaroslavTulach Jun 28, 2024
54bb7d8
Recognize JAVA_OPTS environment variable and pass it to the JVM
JaroslavTulach Jun 28, 2024
ec51515
Let EditionManager work with any EditionProvider, not just updating one
JaroslavTulach Jun 28, 2024
f1ad21b
Don't use UpdatingEditionManager in regular execution
JaroslavTulach Jun 28, 2024
cfedcb6
Derive languageHome from code location
JaroslavTulach Jun 29, 2024
2f3e832
Search for the parser in component subdirectory
JaroslavTulach Jun 29, 2024
406291e
Setup logging before processing --jvm option
JaroslavTulach Jun 29, 2024
cc48ec3
Providing missing argument to makeEditionProvider
JaroslavTulach Jun 29, 2024
9c81fe5
Adding update flag to FakeEditionProvider
JaroslavTulach Jun 29, 2024
eafa192
Change log entry
JaroslavTulach Jun 29, 2024
5ea0814
Benchmarks need to be executed in --jvm mode
JaroslavTulach Jun 29, 2024
8c393bf
Merge remote-tracking branch 'origin/develop' into wip/jtulach/JvmOpt…
JaroslavTulach Jul 1, 2024
fa7a62d
Merge remote-tracking branch 'origin/develop' into wip/jtulach/JvmOpt…
JaroslavTulach Jul 3, 2024
13cb3d4
native-image needs location without .exe on Windows
JaroslavTulach Jul 3, 2024
3fb6a1b
There is no runner anymore
JaroslavTulach Jul 4, 2024
8e4834e
Use .exe in native runner tests
JaroslavTulach Jul 5, 2024
59f3087
run_benchmarks without bash script wrapper
JaroslavTulach Jul 5, 2024
83f31be
Supressing question mark operator is useless here warning
JaroslavTulach Jul 5, 2024
1ec943a
Updating documentation to new location of runner
JaroslavTulach Jul 6, 2024
13c9518
Just return benchmarks
JaroslavTulach Jul 6, 2024
ffb2fb8
No need to disable linter
JaroslavTulach Jul 6, 2024
60595ba
Use with_executable_extension
JaroslavTulach Jul 6, 2024
49700cd
Use with_executable_extension II
JaroslavTulach Jul 6, 2024
2bd08b1
cargo fmt
JaroslavTulach Jul 6, 2024
bbbbf25
Using longer local variable name
JaroslavTulach Jul 6, 2024
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
Prev Previous commit
Next Next commit
Just return benchmarks
Co-authored-by: Kaz Wesley <kaz@lambdaverse.org>
JaroslavTulach and kazcw authored Jul 6, 2024

Unverified

This commit is not signed, but one or more authors requires that any commit attributed to them is signed.
commit 13c95186f57492cee0ae232231c6d81017c5d5eb
2 changes: 1 addition & 1 deletion build/build/src/enso.rs
Original file line number Diff line number Diff line change
@@ -88,7 +88,7 @@ impl BuiltEnso {
.set_env(ENSO_BENCHMARK_TEST_DRY_RUN, &Boolean::from(opt.dry_run))?
.run_ok()
.await;
Ok(benchmarks?)
benchmarks
}

pub fn run_test(&self, test_path: impl AsRef<Path>, ir_caches: IrCaches) -> Result<Command> {