mirror of https://github.com/containers/podman.git
30 lines
480 B
Bash
Executable File
30 lines
480 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
source $(dirname $0)/lib.sh
|
|
|
|
if [[ "$UID" == "0" ]]
|
|
then
|
|
echo "Error: Expected to be running as a regular user"
|
|
exit 1
|
|
fi
|
|
|
|
# Ensure environment setup correctly
|
|
req_env_var GOSRC ROOTLESS_USER
|
|
|
|
echo "."
|
|
echo "Hello, my name is $USER and I live in $PWD can I be your friend?"
|
|
echo "."
|
|
|
|
export PODMAN_VARLINK_ADDRESS=unix:/tmp/podman-$(id -u)
|
|
show_env_vars
|
|
|
|
set -x
|
|
cd "$GOSRC"
|
|
make
|
|
make varlink_generate
|
|
make test-binaries
|
|
make ginkgo
|
|
make ginkgo-remote
|