You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: 03-cd/00-groovy/notes.md
-2Lines changed: 0 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,5 +16,3 @@
16
16
- Sintaxis maleable y flexible, integración avanzada y mecanismos de personalización, para integrar de manera legible las reglas de negocio en nuestras aplicaciones
17
17
- Scripting and testing glue
18
18
- Genial para escribir tests de manera concisa y mantenible, y para todas las tareas de `build` y automatización.
19
-
20
-
> Aunque se integra de manera fantástica con Java, tiene su propio compilador y su propia VM.
- Verificamos que la build sobre master se ha hecho.
139
139
140
140
- Eliminaremos las credenciales de nuestro usuario.
@@ -147,14 +147,14 @@ Realizar el mismo paso cambiando la visibilidad del proyecto de Bitbucket a `pri
147
147
- Crear un nuevo repositorio en GitHub `jenkins-demos`. Este repositorio lo utilizaremos para el resto de las demos. Lo haremos privado para añadirle credenciales a Jenkins.
148
148
- Añadimos los siguientes ficheros a nuestro repositorio:
149
149
150
-
**./01-intro/01/1.1/test.sh**
150
+
**./01-intro/1.1/test.sh**
151
151
152
152
```bash
153
153
#!/bin/sh
154
154
echo"Inside the script, demo $DEMO"
155
155
```
156
156
157
-
**./01-intro/01/1.1/Jenkinsfile**
157
+
**./01-intro/1.1/Jenkinsfile**
158
158
159
159
```groovy
160
160
pipeline {
@@ -202,7 +202,7 @@ Vemos que tenemos un error de que no encuentra los ficheros por no tenerlos en l
202
202
```diff
203
203
stage('stage-1') {
204
204
steps {
205
-
+ dir('01-intro/01/1.1') {
205
+
+ dir('01-intro/1.1') {
206
206
echo "This is the build number $BUILD_NUMBER of demo $DEMO"
0 commit comments