hudson.model.AbstractProject.getEnvironment()方法的使用及代码示例

x33g5p2x  于2022-01-15 转载在 其他  
字(3.1k)|赞(0)|评价(0)|浏览(86)

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

AbstractProject.getEnvironment介绍

暂无

代码示例

代码示例来源: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: openshift/jenkins-plugin

@Override
protected PollingResult compareRemoteRevisionWith(
    AbstractProject<?, ?> project, Launcher launcher,
    FilePath workspace, TaskListener listener, SCMRevisionState baseline)
    throws IOException, InterruptedException {
  return compareRemoteRevisionInternal(
      project.getEnvironment(null, listener), launcher, listener,
      baseline);
}

代码示例来源: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/git

env = p.getEnvironment(workspaceToNode(ws), listener);
env = p.getEnvironment(workspaceToNode(ws), listener);

相关文章

微信公众号

最新文章

更多

AbstractProject类方法