summaryrefslogtreecommitdiff
path: root/share/spack/qa/run-docker-tests
blob: 398889be26f027f2a9eadf1c6c8e905b2c74e5e9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash -e
#
# Copyright 2013-2019 Lawrence Livermore National Security, LLC and other
# Spack Project Developers. See the top-level COPYRIGHT file for details.
#
# SPDX-License-Identifier: (Apache-2.0 OR MIT)

#
# Description:
#     Runs Spack docker tests.  This builds a docker image for each of the
#     configurations in share/spack/docker/config.
#
# Usage:
#     run-docker-tests
#

__login_attempted=0
__login_success=1
ensure_docker_login() {
    if [ "$__login_attempted" '!=' '0' ] ; then
        return $__login_success
    fi

    echo "$DOCKER_PASSWORD" | \
        docker login -u "$DOCKER_USERNAME" --password-stdin

    if [ $? '=' '0' ] ; then
          __login_success=0
    fi

    __login_attempted=1
    return $__login_success
}

for config in share/spack/docker/config/* ; do
    source "$config" ;
    ./share/spack/docker/build-image.sh;
done

if [ "$TEST_SUITE" '=' "docker" -a \
     "$TRAVIS_EVENT_TYPE" != "pull_request" -a \
     ensure_docker_login ] ; then

    for config in share/spack/docker/config/* ; do
        source "$config"
        ./share/spack/docker/push-image.sh
    done
fi