We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e646f0c + 5a3b266 commit 62517c5Copy full SHA for 62517c5
Jenkinsfile
@@ -1,9 +1,6 @@
1
// Object holding the docker image.
2
def img
3
4
-// Our internal registry.
5
-def PRIVATE_REGISTRY = "https://10.0.0.21:5201"
6
-
7
pipeline {
8
agent none
9
options {
@@ -27,13 +24,6 @@ pipeline {
27
24
img = docker.build "c-semantics:${env.CHANGE_ID}"
28
25
}
29
26
} }
30
- stage ( 'Push to private registry' ) { steps {
31
- script {
32
- docker.withRegistry ( "${PRIVATE_REGISTRY}", 'rvdockerhub' ) {
33
- img.push()
34
- }
35
36
- } }
37
stage ( 'Compile' ) {
38
39
timeout(time: 70, unit: 'MINUTES')
0 commit comments