guix build: Accept multiple '-s' options.
[jackhill/guix/guix.git] / tests / guix-build.sh
1 # GNU Guix --- Functional package management for GNU
2 # Copyright © 2012, 2013, 2014, 2016, 2017, 2018, 2019 Ludovic Courtès <ludo@gnu.org>
3 #
4 # This file is part of GNU Guix.
5 #
6 # GNU Guix is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or (at
9 # your option) any later version.
10 #
11 # GNU Guix is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 # GNU General Public License for more details.
15 #
16 # You should have received a copy of the GNU General Public License
17 # along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19 #
20 # Test the `guix build' command-line utility.
21 #
22
23 guix build --version
24
25 # Should fail.
26 if guix build -e +;
27 then false; else true; fi
28
29 # Source-less packages are accepted; they just return nothing.
30 guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S
31 test "`guix build -e '(@ (gnu packages bootstrap) %bootstrap-glibc)' -S`" = ""
32
33 # Should pass.
34 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' | \
35 grep -e '-guile-'
36 guix build hello -d | \
37 grep -e '-hello-[0-9\.]\+\.drv$'
38
39 # Passing a URI.
40 GUIX_DAEMON_SOCKET="file://$GUIX_STATE_DIRECTORY/daemon-socket/socket" \
41 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
42
43 ( if GUIX_DAEMON_SOCKET="weird://uri" \
44 guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'; \
45 then exit 1; fi )
46
47 # Passing one '-s' flag.
48 test `guix build sed -s x86_64-linux -d | wc -l` = 1
49
50 # Passing multiple '-s' flags.
51 all_systems="-s x86_64-linux -s i686-linux -s armhf-linux -s aarch64-linux"
52 test `guix build sed $all_systems -d | sort -u | wc -l` = 4
53
54 # Check --sources option with its arguments
55 module_dir="t-guix-build-$$"
56 mkdir "$module_dir"
57 trap "rm -rf $module_dir" EXIT
58
59 cat > "$module_dir/foo.scm"<<EOF
60 (define-module (foo)
61 #:use-module (guix tests)
62 #:use-module (guix packages)
63 #:use-module (guix download)
64 #:use-module (guix build-system trivial))
65
66 (define-public foo
67 (package
68 (name "foo")
69 (version "42")
70 (source (origin
71 (method url-fetch)
72 (uri "http://www.example.com/foo.tar.gz")
73 (sha256
74 (base32
75 "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"))))
76 (build-system trivial-build-system)
77 (inputs
78 (quasiquote (("bar" ,bar))))
79 (home-page "www.example.com")
80 (synopsis "Dummy package")
81 (description "foo is a dummy package for testing.")
82 (license #f)))
83
84 (define-public bar
85 (package
86 (name "bar")
87 (version "9001")
88 (source (origin
89 (method url-fetch)
90 (uri "http://www.example.com/bar.tar.gz")
91 (sha256
92 (base32
93 "yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyy"))))
94 (build-system trivial-build-system)
95 (inputs
96 (quasiquote
97 (("data" ,(origin
98 (method url-fetch)
99 (uri "http://www.example.com/bar.dat")
100 (sha256
101 (base32
102 "zzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzzz")))))))
103 (home-page "www.example.com")
104 (synopsis "Dummy package")
105 (description "bar is a dummy package for testing.")
106 (license #f)))
107
108 (define-public baz
109 (dummy-package "baz" (replacement foo)))
110
111 (define-public superseded
112 (deprecated-package "superseded" bar))
113
114 EOF
115
116 GUIX_PACKAGE_PATH="$module_dir"
117 export GUIX_PACKAGE_PATH
118
119 # foo.tar.gz
120 guix build -d -S foo
121 guix build -d -S foo | grep -e 'foo\.tar\.gz'
122
123 # 'baz' has a replacement so we should be getting the replacement's source.
124 (unset GUIX_BUILD_OPTIONS;
125 test "`guix build -d -S baz`" = "`guix build -d -S foo`")
126
127 guix build -d --sources=package foo
128 guix build -d --sources=package foo | grep -e 'foo\.tar\.gz'
129
130 # bar.tar.gz and bar.dat
131 guix build -d --sources bar
132 test `guix build -d --sources bar \
133 | grep -e 'bar\.tar\.gz' -e 'bar\.dat' \
134 | wc -l` -eq 2
135
136 # bar.tar.gz and bar.dat
137 guix build -d --sources=all bar
138 test `guix build -d --sources bar \
139 | grep -e 'bar\.tar\.gz' -e 'bar\.dat' \
140 | wc -l` -eq 2
141
142 # Should include foo.tar.gz, bar.tar.gz, and bar.dat
143 guix build -d --sources=transitive foo
144 test `guix build -d --sources=transitive foo \
145 | grep -e 'foo\.tar\.gz' -e 'bar\.tar\.gz' -e 'bar\.dat' \
146 | wc -l` -eq 3
147
148
149 # Unbound variables.
150 cat > "$module_dir/foo.scm"<<EOF
151 (define-module (foo)
152 #:use-module (guix tests)
153 #:use-module (guix build-system trivial))
154
155 (define-public foo
156 (dummy-package "package-with-something-wrong"
157 (build-system trivial-build-system)
158 (inputs (quasiquote (("sed" ,sed)))))) ;unbound variable
159 EOF
160
161 if guix build package-with-something-wrong -n; then false; else true; fi
162 guix build package-with-something-wrong -n 2> "$module_dir/err" || true
163 grep "unbound" "$module_dir/err" # actual error
164 grep "forget.*(gnu packages base)" "$module_dir/err" # hint
165 rm -f "$module_dir"/*
166
167 # Should all return valid log files.
168 drv="`guix build -d -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'`"
169 out="`guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'`"
170 log="`guix build --log-file $drv`"
171 echo "$log" | grep log/.*guile.*drv
172 test -f "$log"
173 test "`guix build -e '(@@ (gnu packages bootstrap) %bootstrap-guile)' --log-file`" \
174 = "$log"
175 test "`guix build --log-file guile-bootstrap`" = "$log"
176 test "`guix build --log-file $out`" = "$log"
177
178 # Should fail because the name/version combination could not be found.
179 if guix build hello-0.0.1 -n; then false; else true; fi
180
181 # Keep a symlink to the result, registered as a root.
182 result="t-result-$$"
183 guix build -r "$result" \
184 -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
185 test -x "$result/bin/guile"
186
187 # Should fail, because $result already exists.
188 if guix build -r "$result" -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
189 then false; else true; fi
190
191 rm -f "$result"
192
193 # Check relative file name canonicalization: <https://bugs.gnu.org/35271>.
194 mkdir "$result"
195 guix build -r "$result/x" -e '(@@ (gnu packages bootstrap) %bootstrap-guile)'
196 test -x "$result/x/bin/guile"
197 rm "$result/x"
198 rmdir "$result"
199
200 # Cross building.
201 guix build coreutils --target=mips64el-linux-gnu --dry-run --no-substitutes
202
203 # Replacements.
204 drv1=`guix build guix --with-input=guile@2.0=guile@2.2 -d`
205 drv2=`guix build guix -d`
206 test "$drv1" != "$drv2"
207
208 drv1=`guix build guile -d`
209 drv2=`guix build guile --with-input=gimp=ruby -d`
210 test "$drv1" = "$drv2"
211
212 if guix build guile --with-input=libunistring=something-really-silly
213 then false; else true; fi
214
215 # Deprecated/superseded packages.
216 test "`guix build superseded -d`" = "`guix build bar -d`"
217
218 # Parsing package names and versions.
219 guix build -n time # PASS
220 guix build -n time@1.9 # PASS, version found
221 if guix build -n time@3.2; # FAIL, version not found
222 then false; else true; fi
223 if guix build -n something-that-will-never-exist; # FAIL
224 then false; else true; fi
225
226 # Invoking a monadic procedure.
227 guix build -e "(begin
228 (use-modules (guix gexp))
229 (lambda ()
230 (gexp->derivation \"test\"
231 (gexp (mkdir (ungexp output))))))" \
232 --dry-run
233
234 # Running a gexp.
235 guix build -e '#~(mkdir #$output)' -d
236 guix build -e '#~(mkdir #$output)' -d | grep 'gexp\.drv'
237
238 # Same with a file-like object.
239 guix build -e '(computed-file "foo" #~(mkdir #$output))' -d
240 guix build -e '(computed-file "foo" #~(mkdir #$output))' -d | grep 'foo\.drv'
241
242 # Building from a package file.
243 cat > "$module_dir/package.scm"<<EOF
244 (use-modules (gnu))
245 (use-package-modules bootstrap)
246
247 %bootstrap-guile
248 EOF
249 guix build --file="$module_dir/package.scm"
250
251 # Building from a monadic procedure file.
252 cat > "$module_dir/proc.scm"<<EOF
253 (use-modules (guix gexp))
254 (lambda ()
255 (gexp->derivation "test"
256 (gexp (mkdir (ungexp output)))))
257 EOF
258 guix build --file="$module_dir/proc.scm" --dry-run
259
260 # Building from a gexp file.
261 cat > "$module_dir/gexp.scm"<<EOF
262 (use-modules (guix gexp))
263
264 (gexp (mkdir (ungexp output)))
265 EOF
266 guix build --file="$module_dir/gexp.scm" -d
267 guix build --file="$module_dir/gexp.scm" -d | grep 'gexp\.drv'
268
269 # Using 'GUIX_BUILD_OPTIONS'.
270 GUIX_BUILD_OPTIONS="--dry-run --no-grafts"
271 export GUIX_BUILD_OPTIONS
272
273 guix build emacs
274
275 GUIX_BUILD_OPTIONS="--something-completely-crazy"
276 if guix build emacs;
277 then false; else true; fi