Add Docker Verify and Merge jobs
[releng/global-jjb.git] / shell / docker-get-yaml-tag.sh
1 #!/bin/bash
2 # SPDX-License-Identifier: EPL-1.0
3 ##############################################################################
4 # Copyright (c) 2019 The Linux Foundation and others.
5 #
6 # All rights reserved. This program and the accompanying materials
7 # are made available under the terms of the Eclipse Public License v1.0
8 # which accompanies this distribution, and is available at
9 # http://www.eclipse.org/legal/epl-v10.html
10 ##############################################################################
11 echo "---> docker-get-yaml-tag.sh"
12 # Gets the container tag from a yaml file.
13
14 set -eu -o pipefail
15
16 cd "$DOCKER_ROOT"
17 container_tag_file=container-tag.yaml
18
19 if [ -f "$container_tag_file" ]
20 then
21     image_name=$(yq -r .tag "$container_tag_file")
22 else
23     echo "$container_tag_file file not found. Make sure this file exists."
24     exit 1
25 fi
26
27 # Write DOCKER_IMAGE information to a file so it can be injected into the
28 # environment for following steps
29 echo "DOCKER_IMAGE=$image_name" >> "$WORKSPACE/env_docker_inject.txt"