diff --git a/.jenkinsfile b/.jenkinsfile new file mode 100644 index 0000000..4556ab7 --- /dev/null +++ b/.jenkinsfile @@ -0,0 +1,30 @@ +pipeline { + agent any + environment { + REGISTRY_ADDRESS = "gitea.atria-soft.org" + REGISTRY_ADDRESS_FULL = "https://${REGISTRY_ADDRESS}" + REPOSITORY_BASE_NAME = 'jatria-soft/etk' + TAG_DOCKER = getEnvName(env.BRANCH_NAME) + } + stages { + stage('save-evironment') { + steps { + sh 'ls -la' + sh 'pwd' + sh 'uname -a' + sh 'printenv | sort' + sh 'cat version.txt' + sh 'git log -n 20' + } + } + } +} + +def getEnvName(branchName) { + if("master".equals(branchName)) { + return "latest"; + } else if("dev".equals(branchName)) { + return "dev"; + } + return "other"; +} \ No newline at end of file