docker_test.sh 2.14 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/usr/bin/env bash
# Copyright 2017 The TensorFlow Authors. All Rights Reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# ==============================================================================
# 
# DO NOT MODIFY THIS FILE. Add tests to be executed in test_models.sh
# Usage: docker_test.sh [--docker-image <DOCKER_IMG_NAME>]
#
# DOCKERFILE_IMG_NAME: (Optional) The tensorflow docker container version
#                  If this optional value is not supplied (via the
#                  --docker-image flag), the default latest tensorflow docker
#                  will be used.
#
Amit Patankar's avatar
Amit Patankar committed
25
26
27
# The script obeys the following required environment variables unless superceded by 
# the docker image flag:
# PYTHON_VERSION:   (PYTHON2 | PYTHON3)
28
29
30
31
32
33
34
35
36


# SETUP
# Default exit status
EXIT=0

# Get current directory path to mount
export WORKSPACE=${PWD}

Amit Patankar's avatar
Amit Patankar committed
37
if [ "$PYTHON_VERSION" = "PYTHON3" ]; then
Mike Case's avatar
Mike Case committed
38
  DOCKER_IMG_NAME="tensorflow/tensorflow:1.4.0-py3"
Amit Patankar's avatar
Amit Patankar committed
39
else
Mike Case's avatar
Mike Case committed
40
  DOCKER_IMG_NAME="tensorflow/tensorflow:1.4.0"
Amit Patankar's avatar
Amit Patankar committed
41
42
43
44
45
46
  if [ "$PYTHON_VERSION" != "PYTHON2" ]; then
    echo "WARNING: Python version was not specified. Using Python2 by default."
    sleep 5
  fi
fi

47
48
49
50
51
52
53
54
55
56
DOCKER_BINARY="docker"

# Decide docker image and tag
if [[ "$1" == "--docker-image" ]]; then
  DOCKER_IMG_NAME="$2"
  echo "Using specified docker tensorflow image and tag: ${DOCKER_IMG_NAME}"
  shift 2
fi

# Specify which test is to be run
57
COMMAND="./official/testing/test_models.sh"
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76

# RUN
${DOCKER_BINARY} run \
    -v ${WORKSPACE}:/workspace \
    -w /workspace \
    -t \
    ${DOCKER_IMG_NAME} \
    ${COMMAND} \
    || EXIT=$?


# TEARDOWN
${DOCKER_BINARY} rmi \
  -f \
  ${DOCKER_IMG_NAME}

git clean -dfx

# Return exit status
Mike Case's avatar
Mike Case committed
77
exit ${EXIT}