Advertisement
Guest User

Untitled

a guest
Sep 26th, 2016
123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.95 KB | None | 0 0
  1. withEnv(build_env()) {
  2. nexusArtifactUploader artifactId: 'client', classifier: 'linux', credentialsId: '', file: env.ARTIFACT, groupId: 'example', nexusPassword: '', nexusUrl: 'example:8081/nexus', nexusUser: 'deployment', packaging: 'tar.bz2', protocol: 'http', repository: env.REPO, type: '', version: env.JVERSION
  3. }
  4.  
  5. def build_env() {
  6. def env_filename = env.BUILD_TAG + '.build.env'
  7. sh './buildenv.sh > /tmp/${BUILD_TAG}.build.env'
  8. def prop_list = readFile('/tmp/' + env_filename).split('\n')
  9. return prop_list
  10. }
  11.  
  12. # cat /tmp/jenkins-pycan-28.build.env
  13. PYVERSION=3.3.6a
  14. JVERSION=3.3.6-SNAPSHOT
  15. REPO=snapshots
  16. PENDO_ARTIFACT=/tmp/conda-bld/linux-64/example-3.3.6a-py_0.tar.bz2
  17. PYTHON_DEPS_ARTIFACT=python-dependencies/example-pip-dependencies-3.3.6a-py35_0.tar.bz2
  18.  
  19. java.lang.ClassCastException: org.jenkinsci.plugins.workflow.steps.EnvStep.overrides expects java.util.List<java.lang.String> but received class [Ljava.lang.String;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement