Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[jakartaee-platform-dev] Problems uploading to download.eclipse.org

Hi All,

 

For Jakarta Concurrency I am trying to upload our staged TCK to Eclipse Downloads in order to get the spec to ballot. However I am having real trouble working out how to get something onto downloads.

 

I have followed this guide Jenkins - Eclipsepedia and also created a pipeline job simplified down to below. However I am still getting genie.cu@xxxxxxxxxxxxxxxxxxxxxxxxxxxx: Permission denied (publickey,password)

 

 

pipeline {

  agent any

    stages {

    stage('Deploy') {

      steps {

        sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {

          sh '''

            ssh -o BatchMode=yes genie.cu@xxxxxxxxxxxxxxxxxxxxxxxxxxxx ls -l /home/data/httpd/download.eclipse.org/cu/snapshots

          '''

        }

      }

    }

  }

}

 

The log of the job seems to be setting up the agent correctly

 

[ssh-agent] Using credentials genie.cu (ssh://genie.cu@xxxxxxxxxxxxxxxxxxxxxxxxxxxx)

[ssh-agent] Looking for ssh-agent implementation...

[ssh-agent]   Exec ssh-agent (binary ssh-agent on a remote machine)

$ ssh-agent

SSH_AUTH_SOCK=/tmp/ssh-kVYRBrNSCXed/agent.101

SSH_AGENT_PID=103

Running ssh-add (command line suppressed)

Identity added: /home/jenkins/agent/workspace/TestUpload@tmp/private_key_11415952773500115564.key (/home/jenkins/agent/workspace/TestUpload@tmp/private_key_11415952773500115564.key)

 

Anybody hit this before?

 

 

Steve Millidge

 

 


Back to the top