diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-04-03 07:51:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-03 07:51:42 -0700 |
commit | 2ad5f5cc25844d0723116149b42e04ab310269f4 (patch) | |
tree | 6f569aea9d7922ff8a1d64079b2d96ebc695b062 /contrib/cirrus/unit_test.sh | |
parent | ad467ba16e5f78a159c730ea005830cfa075de15 (diff) | |
parent | 599714d9f2b5d0715a5cda0275fbea64d581bbc6 (diff) | |
download | podman-2ad5f5cc25844d0723116149b42e04ab310269f4.tar.gz podman-2ad5f5cc25844d0723116149b42e04ab310269f4.tar.bz2 podman-2ad5f5cc25844d0723116149b42e04ab310269f4.zip |
Merge pull request #2833 from cevich/podman_in_podman
Cirrus: Support special-case modes of testing
Diffstat (limited to 'contrib/cirrus/unit_test.sh')
-rwxr-xr-x | contrib/cirrus/unit_test.sh | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/contrib/cirrus/unit_test.sh b/contrib/cirrus/unit_test.sh index fd9e82509..4ace19d10 100755 --- a/contrib/cirrus/unit_test.sh +++ b/contrib/cirrus/unit_test.sh @@ -15,17 +15,8 @@ clean_env set -x cd "$GOSRC" -case "${OS_RELEASE_ID}-${OS_RELEASE_VER}" in - ubuntu-18) ;& # Continue to the next item - fedora-29) ;& - fedora-28) ;& - centos-7) ;& - rhel-7) - make install.tools - make localunit - make - ;; - *) bad_os_id_ver ;; -esac +make install.tools +make localunit +make record_timestamp "unit test end" |