Skip to content

Commit 0bce35e

Browse files
committed
[GR-62389] Move javadoc jobs to jdk latest
PullRequest: graal/20097
2 parents db68b01 + 25dff4d commit 0bce35e

File tree

6 files changed

+12
-12
lines changed

6 files changed

+12
-12
lines changed

ci_includes/publish-javadoc.jsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
local linux_amd64 = common.linux_amd64,
55

66
local javadoc_publisher = {
7-
name: 'graal-publish-javadoc-' + utils.prefixed_jdk(self.jdk_version),
7+
name: 'graal-publish-javadoc-' + self.jdk_name,
88
run+: [
99
["cd", "./sdk"],
1010
["mx", "build"],
@@ -59,7 +59,7 @@
5959
},
6060

6161
local all_builds = [
62-
common.post_merge + linux_amd64 + common.labsjdk21 + javadoc_publisher,
62+
common.post_merge + linux_amd64 + common.labsjdkLatest + javadoc_publisher,
6363
],
6464
// adds a "defined_in" field to all builds mentioning the location of this current file
6565
builds:: utils.add_defined_in(all_builds, std.thisFile),

tools/ci/ci.jsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
},
4444

4545
local tools_javadoc = tools_common + common_guard + {
46-
name: "gate-tools-javadoc",
46+
name: "gate-tools-javadoc-" + self.jdk_name,
4747
run: [
4848
["mx", "build"],
4949
["mx", "javadoc"],
@@ -85,7 +85,7 @@
8585
common.linux_amd64 + common.oraclejdkLatest + tools_gate,
8686
common.linux_amd64 + common.oraclejdk21 + tools_gate,
8787

88-
common.linux_amd64 + common.oraclejdk21 + tools_javadoc,
88+
common.linux_amd64 + common.oraclejdkLatest + tools_javadoc,
8989
common.linux_amd64 + common.oraclejdk21 + tools_coverage_weekly,
9090
common.linux_aarch64 + common.labsjdkLatest + tools_weekly,
9191
common.linux_aarch64 + common.labsjdk21 + tools_weekly,

truffle/ci/ci.jsonnet

+2-2
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@
121121
linux_amd64 + common.oraclejdk21 + truffle_gate + guard + {timelimit: "45:00"},
122122
linux_amd64 + common.oraclejdkLatest + truffle_gate + guard + {environment+: {DISABLE_DSL_STATE_BITS_TESTS: "true"}},
123123

124-
truffle_common + linux_amd64 + common.oraclejdk21 + guard {
125-
name: "gate-truffle-javadoc",
124+
truffle_common + linux_amd64 + common.oraclejdkLatest + guard {
125+
name: "gate-truffle-javadoc-" + self.jdk_name,
126126
run: [
127127
["mx", "build"],
128128
["mx", "javadoc"],

truffle/src/com.oracle.truffle.api.bytecode/src/com/oracle/truffle/api/bytecode/Instruction.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ protected Instruction(Object token) {
9292
* {@link BytecodeNode}, it is therefore recommended to use {@link #getLocation()} instead
9393
* whenever possible.
9494
*
95-
* @ee {@link #getLocation()}
95+
* @see #getLocation()
9696
* @since 24.2
9797
*/
9898
public abstract int getBytecodeIndex();

truffle/src/com.oracle.truffle.api/src/com/oracle/truffle/api/InternalResource.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@
105105
*
106106
* The resource files are listed in the
107107
* {@code META-INF/resources/<language-id>/<resource-id>/<os>/<arch>/file-list} file. For the file
108-
* list format, refer to {@link InternalResource.Env#unpackFiles(Env, Path)}. Additionally, the
108+
* list format, refer to {@link InternalResource#unpackFiles(Env, Path)}. Additionally, the
109109
* {@code META-INF/resources/<language-id>/<resource-id>/<os>/<arch>/sha256} file contains an
110110
* SHA-256 hash of the resource files. It is recommended to use non-encapsulated resource paths that
111111
* include the component ID and resource ID, as this helps prevent ambiguity when the language or

truffle/src/com.oracle.truffle.api/src/com/oracle/truffle/api/nodes/RootNode.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -651,15 +651,15 @@ protected Node findInstrumentableCallNode(Node callNode, Frame frame, int byteco
651651
/**
652652
* Provide a list of stack frames that led to a schedule of asynchronous execution of this root
653653
* node on the provided frame. The asynchronous frames are expected to be found here when
654-
* {@link Env#getAsynchronousStackDepth()} is positive. The language is free to provide
655-
* asynchronous frames or longer list of frames when it's of no performance penalty, or if
656-
* requested by other options. This method is invoked on slow-paths only and with a context
654+
* {@link TruffleLanguage#getAsynchronousStackDepth()} is positive. The language is free to
655+
* provide asynchronous frames or longer list of frames when it's of no performance penalty, or
656+
* if requested by other options. This method is invoked on slow-paths only and with a context
657657
* entered.
658658
*
659659
* @param frame A frame, never <code>null</code>
660660
* @return a list of {@link TruffleStackTraceElement}, or <code>null</code> when no asynchronous
661661
* stack is available.
662-
* @see Env#getAsynchronousStackDepth()
662+
* @see TruffleLanguage#getAsynchronousStackDepth()
663663
* @since 20.1.0
664664
*/
665665
protected List<TruffleStackTraceElement> findAsynchronousFrames(Frame frame) {

0 commit comments

Comments
 (0)