gnu: icecat: Update to 78.10.0-guix0-preview1 [security fixes].
[jackhill/guix/guix.git] / gnu / packages / ci.scm
CommitLineData
0061079a
EB
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2015 Eric Bavier <bavier@member.fsf.org>
365de1e7 3;;; Copyright © 2016 Jan Nieuwenhuizen <janneke@gnu.org>
04927b6f 4;;; Copyright © 2016, 2017 Mathieu Lirzin <mthl@gnu.org>
0f01493d 5;;; Copyright © 2017, 2020, 2021 Mathieu Othacehe <m.othacehe@gmail.com>
8f0b41c8 6;;; Copyright © 2017, 2019, 2020 Ricardo Wurmus <rekado@elephly.net>
68a653ab 7;;; Copyright © 2018 Clément Lassieur <clement@lassieur.org>
0061079a
EB
8;;;
9;;; This file is part of GNU Guix.
10;;;
11;;; GNU Guix is free software; you can redistribute it and/or modify it
12;;; under the terms of the GNU General Public License as published by
13;;; the Free Software Foundation; either version 3 of the License, or (at
14;;; your option) any later version.
15;;;
16;;; GNU Guix is distributed in the hope that it will be useful, but
17;;; WITHOUT ANY WARRANTY; without even the implied warranty of
18;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19;;; GNU General Public License for more details.
20;;;
21;;; You should have received a copy of the GNU General Public License
22;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
23
24(define-module (gnu packages ci)
25 #:use-module ((guix licenses) #:prefix l:)
26 #:use-module (gnu packages)
27 #:use-module (guix packages)
2b469e60 28 #:use-module (guix download)
0061079a 29 #:use-module (guix git-download)
0f01493d 30 #:use-module (guix download)
0061079a
EB
31 #:use-module (gnu packages autotools)
32 #:use-module (gnu packages base)
2b469e60
CB
33 #:use-module (gnu packages boost)
34 #:use-module (gnu packages check)
0061079a
EB
35 #:use-module (gnu packages docbook)
36 #:use-module (gnu packages compression)
37 #:use-module (gnu packages databases)
38 #:use-module (gnu packages guile)
0791437f 39 #:use-module (gnu packages guile-xyz)
7903f00a 40 #:use-module (gnu packages gnupg)
2b469e60 41 #:use-module (gnu packages lisp-xyz)
0061079a 42 #:use-module (gnu packages mail)
0061079a
EB
43 #:use-module (gnu packages package-management)
44 #:use-module (gnu packages perl)
21b41a79 45 #:use-module (gnu packages perl-compression)
0061079a 46 #:use-module (gnu packages pkg-config)
2b469e60
CB
47 #:use-module (gnu packages serialization)
48 #:use-module (gnu packages sqlite)
cc2b77df 49 #:use-module (gnu packages tls)
44ccd962 50 #:use-module (gnu packages texinfo)
0061079a
EB
51 #:use-module (gnu packages version-control)
52 #:use-module (gnu packages web)
53 #:use-module (gnu packages xml)
2b469e60 54 #:use-module (guix build-system cmake)
b94cf161 55 #:use-module (guix build-system gnu))
0061079a 56
365de1e7 57(define-public cuirass
2f6cbd55
MO
58 (let ((commit "e49368a8b30190c0e4351e78d21ae2d22b51a878")
59 (revision "12"))
365de1e7
ML
60 (package
61 (name "cuirass")
d1e16827 62 (version (git-version "1.0.0" revision commit))
ff52d115
MO
63 (source
64 (origin
65 (method git-fetch)
66 (uri (git-reference
67 (url "https://git.savannah.gnu.org/git/guix/guix-cuirass.git")
68 (commit commit)))
69 (file-name (git-file-name name version))
70 (sha256
71 (base32
2f6cbd55 72 "0kfaqrz2ajwvrii6lf4748wsx73vwv5bfhlr1r666wxrcszpqka7"))))
365de1e7
ML
73 (build-system gnu-build-system)
74 (arguments
9d722958 75 `(#:modules ((guix build utils)
0d43b12d
LC
76 (guix build gnu-build-system)
77 (ice-9 rdelim)
78 (ice-9 popen))
134a2c4a 79 #:configure-flags '("--localstatedir=/var") ;for /var/log/cuirass
931572d2
MO
80 ;; XXX: HTTP tests fail on aarch64 due to Fibers errors, disable them
81 ;; on that architecture for now.
82 #:tests? ,(let ((s (or (%current-target-system)
83 (%current-system))))
84 (not (string-prefix? "aarch64" s)))
d1e16827 85 #:parallel-tests? #f
0d43b12d 86 #:phases
365de1e7 87 (modify-phases %standard-phases
9d722958
MO
88 (add-before 'bootstrap 'fix-version-gen
89 (lambda _
90 (patch-shebang "build-aux/git-version-gen")
91
92 (call-with-output-file ".tarball-version"
93 (lambda (port)
94 (display ,version port)))))
ff52d115
MO
95 (add-before 'check 'set-PATH-for-tests
96 (lambda* (#:key inputs #:allow-other-keys)
97 (let ((pg (assoc-ref inputs "ephemeralpg"))
98 (path (getenv "PATH")))
99 (setenv "PATH" (string-append pg "/bin:" path))
100 #t)))
d1e16827
MO
101 ;; Disable the remote tests that require a Guix daemon connection.
102 (add-before 'check 'disable-remote-tests
103 (lambda _
104 (substitute* "Makefile.am"
105 (("tests/remote.scm") ""))
106 #t))
365de1e7
ML
107 (add-after 'install 'wrap-program
108 (lambda* (#:key inputs outputs #:allow-other-keys)
109 ;; Wrap the 'cuirass' command to refer to the right modules.
110 (let* ((out (assoc-ref outputs "out"))
0f01493d 111 (avahi (assoc-ref inputs "guile-avahi"))
7903f00a 112 (gcrypt (assoc-ref inputs "guile-gcrypt"))
365de1e7 113 (json (assoc-ref inputs "guile-json"))
0f01493d
MO
114 (zmq (assoc-ref inputs "guile-simple-zmq"))
115 (squee (assoc-ref inputs "guile-squee"))
a6d05444
RW
116 (git (assoc-ref inputs "guile-git"))
117 (bytes (assoc-ref inputs "guile-bytestructures"))
d1688e6a 118 (fibers (assoc-ref inputs "guile-fibers"))
7f765a9d 119 (zlib (assoc-ref inputs "guile-zlib"))
0e5bc144 120 (matd (assoc-ref inputs "guile-mastodon"))
108e2c61 121 (tls (assoc-ref inputs "gnutls"))
0e5bc144 122 (mail (assoc-ref inputs "mailutils"))
365de1e7 123 (guix (assoc-ref inputs "guix"))
0f01493d 124 (deps (list avahi gcrypt json zmq squee git bytes
108e2c61 125 fibers zlib matd tls mail guix))
0d43b12d 126 (guile (assoc-ref %build-inputs "guile"))
ff52d115
MO
127 (effective
128 (read-line
129 (open-pipe* OPEN_READ
130 (string-append guile "/bin/guile")
131 "-c" "(display (effective-version))")))
132 (mods
133 (string-drop-right ;drop trailing colon
134 (string-join deps
135 (string-append "/share/guile/site/"
136 effective ":")
137 'suffix)
138 1))
139 (objs
140 (string-drop-right
141 (string-join deps
142 (string-append "/lib/guile/" effective
143 "/site-ccache:")
144 'suffix)
145 1)))
d1e16827
MO
146 ;; Make sure 'cuirass' can find the relevant Guile modules.
147 (wrap-program (string-append out "/bin/cuirass")
148 `("PATH" ":" prefix (,(string-append out "/bin")))
149 `("GUILE_LOAD_PATH" ":" prefix (,mods))
150 `("GUILE_LOAD_COMPILED_PATH" ":" prefix (,objs)))
2eadd828 151 #t))))))
365de1e7 152 (inputs
0b17de06 153 `(("guile" ,guile-3.0/libgc-7)
0f01493d 154 ("guile-avahi" ,guile-avahi)
d1688e6a 155 ("guile-fibers" ,guile-fibers)
7903f00a 156 ("guile-gcrypt" ,guile-gcrypt)
8f7cf3b5 157 ("guile-json" ,guile-json-4)
0f01493d
MO
158 ("guile-simple-zmq" ,guile-simple-zmq)
159 ("guile-squee" ,guile-squee)
a6d05444 160 ("guile-git" ,guile-git)
7f765a9d 161 ("guile-zlib" ,guile-zlib)
03bf951f 162 ("guile-mastodon" ,guile-mastodon)
108e2c61 163 ("gnutls" ,gnutls)
0e5bc144 164 ("mailutils" ,mailutils)
a6d05444
RW
165 ;; FIXME: this is propagated by "guile-git", but it needs to be among
166 ;; the inputs to add it to GUILE_LOAD_PATH.
167 ("guile-bytestructures" ,guile-bytestructures)
168 ("guix" ,guix)))
365de1e7
ML
169 (native-inputs
170 `(("autoconf" ,autoconf)
171 ("automake" ,automake)
44ccd962 172 ("pkg-config" ,pkg-config)
ff52d115
MO
173 ("texinfo" ,texinfo)
174 ("ephemeralpg" ,ephemeralpg)))
1501cb55
LC
175 (native-search-paths
176 ;; For HTTPS access, Cuirass itself honors these variables, with the
177 ;; same semantics as Git and OpenSSL (respectively).
178 (list (search-path-specification
179 (variable "GIT_SSL_CAINFO")
180 (file-type 'regular)
181 (separator #f) ;single entry
182 (files '("etc/ssl/certs/ca-certificates.crt")))
183 (search-path-specification
184 (variable "SSL_CERT_DIR")
185 (files '("etc/ssl/certs")))))
365de1e7
ML
186 (synopsis "Continuous integration system")
187 (description
188 "Cuirass is a continuous integration tool using GNU Guix. It is
189intended as a replacement for Hydra.")
bbd04a4c 190 (home-page "https://guix.gnu.org/cuirass/")
365de1e7 191 (license l:gpl3+))))
2b469e60
CB
192
193(define-public laminar
194 (package
195 (name "laminar")
196 (version "1.0")
197 (source
198 (origin (method url-fetch)
199 (uri (string-append "https://github.com/ohwgiles/laminar/archive/"
200 version
201 ".tar.gz"))
202 (file-name (string-append name "-" version ".tar.gz"))
203 (sha256
204 (base32
205 "11m6h3rdmj2rsmsryy7r40gqccj4gg1cnqwy6blscs87gx4s423g"))))
206 (build-system cmake-build-system)
207 (arguments
208 `(#:tests? #f ; TODO Can't build tests
209 #:configure-flags
210 (list "-DCMAKE_CXX_STANDARD=17"
211 ;; "-DBUILD_TESTS=true" TODO: objcopy: js/stPskyUS: can't add
212 ;; section '.note.GNU-stack': file format not recognized
213 (string-append "-DLAMINAR_VERSION=" ,version))
214 #:phases
215 (modify-phases %standard-phases
216 (add-after 'unpack 'patch-CMakeLists.txt
217 (lambda _
218 (substitute* "CMakeLists.txt"
219 (("file\\(DOWNLOAD.*\n$")
220 "# file download removed by Guix --")
221 (("install\\(FILES etc/laminar.service DESTINATION \\$\\{SYSTEMD\\_UNITDIR\\}\\)")
222 "")
223 (("install\\(FILES \\$\\{CMAKE\\_CURRENT\\_BINARY\\_DIR\\}\\/laminar\\.service DESTINATION \\$\\{SYSTEMD\\_UNITDIR\\}\\)")
224 "")
225 (("install\\(FILES etc/laminar\\.conf DESTINATION \\/etc\\)") "")
226 (("\\/usr\\/") ""))
227 #t))
228 (add-after 'configure 'copy-in-javascript-and-css
229 (lambda* (#:key inputs outputs #:allow-other-keys)
230 (use-modules (ice-9 popen))
231
232 (mkdir-p "../build/js")
233 (for-each (lambda (name)
234 (let* ((file
235 (assoc-ref inputs (string-append name ".js")))
236 (port
237 (open-pipe* OPEN_READ "uglify-js" file))
238 (destination
239 (string-append
240 "../build/js/" name ".min.js")))
241
242 (call-with-output-file destination
243 (lambda (output-port)
244 (dump-port port output-port)))
245
246 (let ((exit (close-pipe port)))
247 (unless (zero? exit)
248 (error "uglify-js failed" exit)))))
249
250 '("vue"
251 "vue-router"
252 "Chart"))
253
254 ;; ansi_up.js isn't minified
255 (copy-file (assoc-ref inputs "ansi_up.js")
256 "../build/js/ansi_up.js")
257
258 #t)))))
259 (inputs
260 `(("capnproto" ,capnproto)
261 ("rapidjson" ,rapidjson)
262 ("sqlite" ,sqlite)
263 ("boost" ,boost)
264 ("zlib" ,zlib)))
265 (native-inputs
266 `(("googletest" ,googletest)
267 ("uglify-js" ,uglify-js)
268
269 ("vue.js"
270 ,(origin (method url-fetch)
271 (uri (string-append "https://raw.githubusercontent.com/"
272 "vuejs/vue/v2.6.12/dist/vue.js"))
273 (sha256
274 (base32
275 "1mq2dn6yqbmzar77xf4x2bvvanf9xc9nwfq06sksl5zmr300m7qm"))))
276 ("vue-router.js"
277 ,(origin (method url-fetch)
278 (uri (string-append "https://raw.githubusercontent.com/"
279 "vuejs/vue-router/v3.4.8/dist/vue-router.js"))
280 (sha256
281 (base32
282 "1hkrbgzhpnrsb4zdafslqagy1vkac6bkdj7kh49js2lhkp9z4nj5"))))
283 ("ansi_up.js"
284 ,(origin (method url-fetch)
285 (uri (string-append "https://raw.githubusercontent.com/"
286 "drudru/ansi_up/v1.3.0/ansi_up.js"))
287 (sha256
288 (base32
289 "1993dywxqi2ylnxybwk7m0s0bg2bq7kfllpyr0s8ck6chd0p8i6r"))))
290 ("Chart.js"
291 ,(origin (method url-fetch)
292 (uri (string-append "https://github.com/chartjs/Chart.js/"
293 "releases/download/v2.7.2/Chart.js"))
294 (sha256
295 (base32
296 "05m3gk6hqjx92j20drnk7q075qpjraywqaf25lnglmsgsgpiqsr7"))))))
297 (synopsis "Lightweight continuous integration service")
298 (description
299 "Laminar is a lightweight and modular continuous integration service. It
300doesn't have a configuration web UI instead uses version-controllable
301configuration files and scripts.
302
303Laminar encourages the use of existing tools such as bash and cron instead of
304reinventing them.")
305 (home-page "https://laminar.ohwg.net/")
306 (license l:gpl3+)))