This website works better with JavaScript
Inicio
Explorar
Ayuda
Iniciar sesión
quintor
/
pinguin-server
Seguir
2
Destacar
0
Fork
0
Archivos
Incidencias
0
Pull Requests
0
Wiki
Explorar el Código
Add Jenkinsfile.
Harry de Boer
hace 9 años
padre
bebaed0ef9
commit
93629d2934
Se han
modificado 1 ficheros
con
8 adiciones
y
0 borrados
Dividir vista
Mostrar estadísticas de diff
8
0
Jenkinsfile
+ 8
- 0
Jenkinsfile
Ver fichero
@@ -0,0 +1,8 @@
+node {
+ stage('Build') {
+ sh 'go build'
+ }
+ stage('Test') {
+ sh 'go test'
+ }
+}