root 5 anni fa
parent
commit
609625f476
1 ha cambiato i file con 8 aggiunte e 9 eliminazioni
  1. 8 9
      env/test.jenkins

+ 8 - 9
env/test.jenkins

@@ -2,17 +2,16 @@
 
 pipeline {
     agent {
-      label 'master'
+       label 'master'
     }
     options {
-      timestamps()
+       timestamps()
     }
     stages {
-      stage("build project") {
-        steps {
-            sh 'go build main.go webPage.go'
-          }
-        }
-      } 
-    }
+     stage("build project") {
+       steps {
+           sh 'go build main.go webPage.go'
+       }
+      }
+    } 
 }