aboutsummaryrefslogtreecommitdiff
path: root/test_with_podman.sh
blob: c32612cbc0b58f48781336caa1a1c567d9d1e792 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash
podman_dir="podman"
now="$(date -u +%s)"
build_log="$now-build_log"
for file in $podman_dir/*
do
    distro="$(printf "%s" "$file"|cut -d '.' -f 2)"
    printf "Building %s container..." "$distro"
    podman build -f $file -t arching-kaos-tools-$distro . >> $build_log 2>&1
    if [ $? -ne 0 ]
    then
        printf "\tFailed!\n"
    else
        printf "\tSuccess!\n"
    fi
done