Skip to content

Commit 192185e

Browse files
committed
[GR-31459] Capture Graal diagnostic files in CI
PullRequest: truffleruby/2653
2 parents 23a9709 + ce74e90 commit 192185e

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

ci.jsonnet

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,10 @@ local part_definitions = {
6767
["ruby", "--version"],
6868
],
6969

70+
catch_files +: [
71+
"Graal diagnostic output saved in (?P<filename>.+\\.zip)",
72+
],
73+
7074
mx_build_options:: [],
7175
},
7276

src/main/java/org/truffleruby/language/methods/DeclarationContext.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ private static Frame lookupVisibility(Frame frame) {
102102
}
103103

104104
@TruffleBoundary
105-
private static Frame lookupVisibilityInternal(MaterializedFrame frame) {
105+
private static MaterializedFrame lookupVisibilityInternal(MaterializedFrame frame) {
106106
while (frame != null) {
107107
final Visibility visibility = RubyArguments.getDeclarationContext(frame).visibility;
108108
if (visibility != null) {

0 commit comments

Comments
 (0)