hudson.Launcher.decorateByEnv()方法的使用及代码示例

x33g5p2x  于2022-01-23 转载在 其他  
字(3.5k)|赞(0)|评价(0)|浏览(120)

本文整理了Java中hudson.Launcher.decorateByEnv()方法的一些代码示例,展示了Launcher.decorateByEnv()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Launcher.decorateByEnv()方法的具体详情如下:
包路径:hudson.Launcher
类名称:Launcher
方法名:decorateByEnv

Launcher.decorateByEnv介绍

[英]Returns a decorated Launcher that automatically adds the specified environment variables. Those that are specified in ProcStarter#envs(String...) will take precedence over what's specified here.
[中]返回自动添加指定环境变量的修饰启动器。在ProcStarter#envs(字符串…)中指定的那些将优先于此处指定的内容。

代码示例

代码示例来源:origin: jenkinsci/jenkins

private PollingResult pollWithWorkspace(TaskListener listener, SCM scm, R lb, @Nonnull FilePath ws, WorkspaceList l) throws InterruptedException, IOException {
  // if doing non-concurrent build, acquire a workspace in a way that causes builds to block for this workspace.
  // this prevents multiple workspaces of the same job --- the behavior of Hudson < 1.319.
  //
  // OTOH, if a concurrent build is chosen, the user is willing to create a multiple workspace,
  // so better throughput is achieved over time (modulo the initial cost of creating that many workspaces)
  // by having multiple workspaces
  Node node = lb.getBuiltOn();
  Launcher launcher = ws.createLauncher(listener).decorateByEnv(getEnvironment(node,listener));
  WorkspaceList.Lease lease = l.acquire(ws, !concurrentBuild);
  try {
    String nodeName = node != null ? node.getSelfLabel().getName() : "[node_unavailable]";
    listener.getLogger().println("Polling SCM changes on " + nodeName);
    LOGGER.fine("Polling SCM changes of " + getName());
    if (pollingBaseline==null) // see NOTE-NO-BASELINE above
      calcPollingBaseline(lb,launcher,listener);
    PollingResult r = scm.poll(this, launcher, ws, listener, pollingBaseline);
    pollingBaseline = r.remote;
    return r;
  } finally {
    lease.release();
  }
}

代码示例来源:origin: jenkinsci/postbuildscript-plugin

public Processor(
  AbstractBuild<?, ?> build,
  Launcher launcher,
  BuildListener listener,
  Configuration config
) {
  this.build = build;
  Result result = build.getResult();
  if (result == null) {
    this.launcher = launcher;
  } else {
    this.launcher = launcher.decorateByEnv(
      new EnvVars("BUILD_RESULT", result.toString())); //NON-NLS
  }
  this.listener = listener;
  this.config = config;
  logger = new Logger(listener, build);
}

代码示例来源:origin: org.jenkins-ci.main/jenkins-core

private PollingResult pollWithWorkspace(TaskListener listener, SCM scm, R lb, @Nonnull FilePath ws, WorkspaceList l) throws InterruptedException, IOException {
  // if doing non-concurrent build, acquire a workspace in a way that causes builds to block for this workspace.
  // this prevents multiple workspaces of the same job --- the behavior of Hudson < 1.319.
  //
  // OTOH, if a concurrent build is chosen, the user is willing to create a multiple workspace,
  // so better throughput is achieved over time (modulo the initial cost of creating that many workspaces)
  // by having multiple workspaces
  Node node = lb.getBuiltOn();
  Launcher launcher = ws.createLauncher(listener).decorateByEnv(getEnvironment(node,listener));
  WorkspaceList.Lease lease = l.acquire(ws, !concurrentBuild);
  try {
    String nodeName = node != null ? node.getSelfLabel().getName() : "[node_unavailable]";
    listener.getLogger().println("Polling SCM changes on " + nodeName);
    LOGGER.fine("Polling SCM changes of " + getName());
    if (pollingBaseline==null) // see NOTE-NO-BASELINE above
      calcPollingBaseline(lb,launcher,listener);
    PollingResult r = scm.poll(this, launcher, ws, listener, pollingBaseline);
    pollingBaseline = r.remote;
    return r;
  } finally {
    lease.release();
  }
}

代码示例来源:origin: org.jenkins-ci.plugins.workflow/workflow-job

launcher = workspace.createLauncher(listener).decorateByEnv(getEnvironment(c.getNode(), listener));
  lease = c.getWorkspaceList().acquire(workspace, !isConcurrentBuild());
} else {

相关文章