diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2018-12-07 07:46:46 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-07 07:46:46 -0800 |
commit | d4af59d57ce23747b255a466e1970f90d3e687fc (patch) | |
tree | b8874e90303ec0f382b87448271d750b3b7a96cc /contrib/cirrus/unit_test.sh | |
parent | a387c723a90a787a1d35c4a9b3b54347d5c08436 (diff) | |
parent | cb900798ce63d8655740f93e0d0b9cc0ebd8144f (diff) | |
download | podman-d4af59d57ce23747b255a466e1970f90d3e687fc.tar.gz podman-d4af59d57ce23747b255a466e1970f90d3e687fc.tar.bz2 podman-d4af59d57ce23747b255a466e1970f90d3e687fc.zip |
Merge pull request #1788 from cevich/cirrus_base_images
Codify and document base-image production + Enable testing with Fedora
Diffstat (limited to 'contrib/cirrus/unit_test.sh')
-rwxr-xr-x | contrib/cirrus/unit_test.sh | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/contrib/cirrus/unit_test.sh b/contrib/cirrus/unit_test.sh index cacc23045..e5b167e79 100755 --- a/contrib/cirrus/unit_test.sh +++ b/contrib/cirrus/unit_test.sh @@ -9,22 +9,22 @@ OS_RELEASE_ID $OS_RELEASE_ID OS_RELEASE_VER $OS_RELEASE_VER " -show_env_vars +clean_env set -x cd "$GOSRC" case "${OS_RELEASE_ID}-${OS_RELEASE_VER}" in ubuntu-18) + make install.tools "BUILDTAGS=$BUILDTAGS" make localunit "BUILDTAGS=$BUILDTAGS" make "BUILDTAGS=$BUILDTAGS" ;; - fedora-28) + fedora-29) ;& # Continue to the next item + centos-7) ;& + rhel-7) + make install.tools make localunit make ;; - centos-7) ;& # Continue to the next item - rhel-7) - stub 'unit testing not working on $OS_RELEASE_ID' - ;; *) bad_os_id_ver ;; esac |