-
Notifications
You must be signed in to change notification settings - Fork 129
/
CI.html
175 lines (150 loc) · 6.5 KB
/
CI.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Desarrollo ágil: Integración continua</title>
<link rel="stylesheet" href="dist/reset.css">
<link rel="stylesheet" href="dist/reveal.css">
<link rel="stylesheet" href="dist/extra.css">
<link rel="stylesheet" href="dist/agil.css" id="theme">
<!-- Theme used for syntax highlighted code -->
<link rel="stylesheet" href="plugin/highlight/monokai.css" id="highlight-theme">
</head>
<body>
<div class="reveal">
<div class="slides">
<section><h2>Desarrollo ágil</h2>
<h1>Integración/despliegue continuo</h1>
<h3><a href="https://jj.github.io/curso-tdd/temas/CI"><code>jj.github.io/curso-tdd/temas/CI</code></a></h3>
</section>
<section><h2>✓ TODO</h2>
<h2 class="fragment">□ ¿Los milestones
internos son productos mínimamente viables? </h2>
<h2 class="fragment">□ ¿Se han integrado
tests en el gestor de tareas?</h2>
</section>
<section><h1>En busca del botón rojo de
despliegue</h1>
<aside class="notes">Se trata de llevar a
automatizar todas las labores desde el push a
main hasta el despliegue</aside>
</section>
<section><h1>Ganchos en la red</h1>
<h2 class="fragment">Usando <em>hooks</em>
conectados a los repositorios.</h2>
</section>
<!-- Configurando -->
<section>
<section><h1>Configuración generalmente en
YAML</h1>
<h2 class="fragment">Infraestructura como
código</h2>
</section>
<section><h1>Travis</h1>
<pre><code data-line-numbers="1-6|7,8|9,10|11"> language: node_js
node_js:
- "10"
- "11"
- "12"
before_install:
- npm install -g mocha
install:
- cd src; npm install .
script: cd src; mocha</code></pre>
<aside class="notes">No es que aconseje travis, pero
al menos tiene un formato simple, que se usa también en
otros sistemas de CI, y al final tiene prácticamente
todo lo necesario para un sistema CI</aside>
</section>
<section><h1>Github actions FTW</h1>
<pre><code data-line-numbers="1|2-9|10-12|13|14|15-17|18">name: "Test Nim"
on:
push:
paths:
- "ejemplos/nim/**"
pull_request:
paths:
- "ejemplos/nim/**"
jobs:
test-nim:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: jiro4989/setup-nim-action@v1
with:
nim-version: '1.4.0' # default is 'stable'
- run: cd ejemplos/nim && nimble test -Y</code></pre>
</section>
</section>
<section> <!-- Acelerando los tests -->
<section><h1>F en F.I.R.S.T.</h1>
<h2 class="fragment">No perder el estado
de flow</h2>
</section>
<section><h2>Infraestructura como código</h2>
<h1 class="fragment"> ⇒ Mucho tiempo
perdido con dependencias</h1>
</section>
<section><h1>Solución ①: <code>fatpack</code></h1>
<pre><code>language: minimal
script:
- prove -c t/proyecto.t
</code></pre>
<aside class="notes">Siendo en Perl, que
está incluido en el runner, más rápido
todavía</aside>
</section>
<section><h1>Solución ②: Docker</h1>
<pre><code data-line-numbers="1|5-7|12">FROM jjmerelo/perl-test-text
LABEL version="1.0" maintainer="JJ Merelo <jjmerelo@GMail.com>" perl5version="5.22"
WORKDIR /home/install
ADD cpanfile .
RUN apt-get update && apt-get install -y git
RUN cpanm --installdeps .
VOLUME /test
WORKDIR /test
ENTRYPOINT cp /home/install/data/*.dic /home/install/data/*.aff /test && prove -I/usr/lib -c </code></pre>
</section>
<section><h1>Y en Travis...</h1>
<pre><code data-line-numbers="1,2|4-6|8,9">language:
- minimal
install:
- docker pull jjmerelo/p5-devqagrx:latest
- docker images
script:
- docker run -t -v $TRAVIS_BUILD_DIR:/test jjmerelo/p5-devqagrx:latest</code></pre>
</section>
<section data-background="https://live.staticflickr.com/1970/31498119578_f07e6e7301_k_d.jpg"><h1>O también</h1>
<h2 class="fragment">Usar cachés</h2>
<h2 class="fragment">Paralelizar
tests</h2>
<h2 class="fragment">Trocear y repartir</h2>
</section>
</section>
<section><h1>✓ TODO hito 13</h1>
<h2 class="fragment">Instalar sistema de CI y
pasar los tests</h2>
<h3 class="fragment">Se usará el <em>checks
API</em> para comprobarlo. </code></pre>
</section>
</div>
</div>
<script src="dist/reveal.js"></script>
<script src="plugin/notes/notes.js"></script>
<script src="plugin/markdown/markdown.js"></script>
<script src="plugin/highlight/highlight.js"></script>
<script>
// More info about initialization & config:
// - https://revealjs.com/initialization/
// - https://revealjs.com/config/
Reveal.initialize({
hash: true,
width: "95%",
slideNumber: true,
// Learn about plugins: https://revealjs.com/plugins/
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes ]
});
</script>
</body>
</html>