35 lines
838 B
Bash
Executable File
35 lines
838 B
Bash
Executable File
#!/bin/bash
|
|
set -xeuo pipefail
|
|
|
|
export GOPATH=$HOME/gopath
|
|
export PATH=$HOME/gopath/bin:$PATH
|
|
export GOSRC=$HOME/gopath/src/github.com/projectatomic/buildah
|
|
|
|
(mkdir -p $GOSRC && cd /code && cp -r . $GOSRC)
|
|
|
|
dnf install -y \
|
|
bats \
|
|
btrfs-progs-devel \
|
|
bzip2 \
|
|
device-mapper-devel \
|
|
findutils \
|
|
git \
|
|
glib2-devel \
|
|
gnupg \
|
|
golang \
|
|
gpgme-devel \
|
|
libassuan-devel \
|
|
libseccomp-devel \
|
|
libselinux-devel \
|
|
libselinux-utils \
|
|
make \
|
|
openssl \
|
|
ostree-devel \
|
|
which
|
|
|
|
# PAPR adds a merge commit, for testing, which fails the
|
|
# short-commit-subject validation test, so tell git-validate.sh to only check
|
|
# up to, but not including, the merge commit.
|
|
export GITVALIDATE_TIP=$(cd $GOSRC; git log -2 --pretty='%H' | tail -n 1)
|
|
make -C $GOSRC install.tools runc all validate test-unit test-integration TAGS="seccomp"
|