all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
blob a754324d1491ed4f75e1b0284079de93a7b3ab23 1922 bytes (raw)
name: tests/guix-pack.sh 	 # note: path name is non-authoritative(*)

 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
 
# GNU Guix --- Functional package management for GNU
# Copyright © 2018 Chris Marusich <cmmarusich@gmail.com>
#
# This file is part of GNU Guix.
#
# GNU Guix is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or (at
# your option) any later version.
#
# GNU Guix is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with GNU Guix.  If not, see <http://www.gnu.org/licenses/>.

#
# Test the `guix pack' command-line utility.
#

guix pack --version

# Use --no-substitutes because we need to verify we can do this ourselves.
GUIX_BUILD_OPTIONS="--no-substitutes"
export GUIX_BUILD_OPTIONS

# Build a tarball.
guix pack --bootstrap guile-bootstrap

# Build a tarball with a symlink.
the_pack="$(guix pack --bootstrap -S /opt/gnu/bin=bin guile-bootstrap)"

is_available () {
    # Use the "type" shell builtin to see if the program is on PATH.
    type "$1"
}

if is_available chroot && is_available unshare; then
    # Verify we can extract and use it.
    test_directory="$(mktemp -d)"
    trap 'rm -rf "$test_directory"' EXIT
    cd "$test_directory"
    tar -xf "$the_pack"
    unshare -mrf chroot . /opt/gnu/bin/guile --version
    cd -
else
    echo "chroot/unshare not available, skipping verification of pack contents"
fi

# Build a Docker image.
guix pack --bootstrap -f docker guile-bootstrap

# Build a Docker image with a symlink.
guix pack --bootstrap -f docker -S /opt/gnu=/ guile-bootstrap

# Build a tarball pack of cross-compiled software.
guix pack --bootstrap --target=arm-unknown-linux-gnueabihf guile-bootstrap

debug log:

solving a754324d1 ...
found a754324d1 in https://yhetil.org/guix/87woyphhqo.fsf@gmail.com/

applying [1/1] https://yhetil.org/guix/87woyphhqo.fsf@gmail.com/
diff --git a/tests/guix-pack.sh b/tests/guix-pack.sh
new file mode 100644
index 000000000..a754324d1

Checking patch tests/guix-pack.sh...
Applied patch tests/guix-pack.sh cleanly.

index at:
100644 a754324d1491ed4f75e1b0284079de93a7b3ab23	tests/guix-pack.sh

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.