pl.project13.maven.git.build.GitlabBuildServerData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of git-commit-id-plugin Show documentation
Show all versions of git-commit-id-plugin Show documentation
This plugin makes basic repository information available through maven resources. This can be used to display
"what version is this?" or "who has deployed this and when, from which branch?" information at runtime, making
it easy to find things like "oh, that isn't deployed yet, I'll test it tomorrow" and making both testers and
developers life easier. See https://github.com/git-commit-id/maven-git-commit-id-plugin
/*
* This file is part of git-commit-id-plugin by Konrad 'ktoso' Malawski
*
* git-commit-id-plugin is free software: you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* git-commit-id-plugin is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with git-commit-id-plugin. If not, see .
*/
package pl.project13.maven.git.build;
import pl.project13.maven.git.GitCommitPropertyConstant;
import pl.project13.maven.git.log.LoggerBridge;
import javax.annotation.Nonnull;
import java.util.Map;
import java.util.Properties;
public class GitlabBuildServerData extends BuildServerDataProvider {
GitlabBuildServerData(LoggerBridge log, @Nonnull Map env) {
super(log,env);
}
/**
* @see GitlabCIVariables
*/
public static boolean isActiveServer(Map env) {
return env.containsKey("CI");
}
@Override
void loadBuildNumber(@Nonnull Properties properties) {
// GITLAB CI
// CI_PIPELINE_ID will be present if in a Gitlab CI environment (Gitlab >8.10 & Gitlab CI >0.5) and contains a server wide unique ID for a pipeline run
String uniqueBuildNumber = env.get("CI_PIPELINE_ID");
// CI_PIPELINE_IID will be present if in a Gitlab CI environment (Gitlab >11.0) and contains the project specific build number
String buildNumber = env.get("CI_PIPELINE_IID");
put(properties, GitCommitPropertyConstant.BUILD_NUMBER, buildNumber == null ? "" : buildNumber);
put(properties,
GitCommitPropertyConstant.BUILD_NUMBER_UNIQUE,
uniqueBuildNumber == null ? "" : uniqueBuildNumber);
}
@Override
public String getBuildBranch() {
String environmentBasedBranch = env.get("CI_COMMIT_REF_NAME");
log.info("Using environment variable based branch name. CI_COMMIT_REF_NAME = {}", environmentBasedBranch);
return environmentBasedBranch;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy