Code indexing in gitaly is broken and leads to code not being visible to the user. We work on the issue with highest priority.

Skip to content
Snippets Groups Projects
Commit 1d7d3d9a authored by gwilliams_c's avatar gwilliams_c
Browse files

Update Jenkinsfile

parent 3ae18590
No related branches found
No related tags found
No related merge requests found
podTemplate(label: 'docker',
containers: [containerTemplate(name: 'docker', image: 'docker:1.11', ttyEnabled: true, command: 'cat')],
containers: [containerTemplate(name: 'catamel', image: ' registry.psi.ch:5000/gwilliams_c/catamel:2.5.3', ttyEnabled: true, command: 'cat', imagePullSecrets: ['psiregsecret'])],
volumes: [hostPathVolume(hostPath: '/var/run/docker.sock', mountPath: '/var/run/docker.sock')]
) {
def image = "jenkins/jnlp-slave"
node('docker') {
stage('Build Docker image') {
git 'https://github.com/jenkinsci/docker-jnlp-slave.git'
container('docker') {
sh "docker build -t ${image} ."
node('catamel') {
stage('list files') {
container('catamel') {
sh "ls -ahl"
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment