mirror of
https://github.com/containers/podman.git
synced 2025-09-15 20:56:00 +08:00

Also remove disused distros (RHEL/CentOS/FAH) and fix get_ci_vm script Signed-off-by: Chris Evich <cevich@redhat.com>
22 lines
325 B
Bash
Executable File
22 lines
325 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
source $(dirname $0)/lib.sh
|
|
|
|
req_env_var GOSRC OS_RELEASE_ID OS_RELEASE_VER
|
|
|
|
set -x
|
|
cd "$GOSRC"
|
|
|
|
case "${OS_RELEASE_ID}" in
|
|
ubuntu) ;& # Continue to the next item
|
|
fedora)
|
|
make install.tools
|
|
make
|
|
make test-binaries
|
|
;;
|
|
*) bad_os_id_ver ;;
|
|
esac
|
|
|
|
make localsystem
|