75 lines
1.8 KiB
Bash
Executable File
75 lines
1.8 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# Copyright (c) 2019-2021 Red Hat, Inc.
|
|
# This program and the accompanying materials are made
|
|
# available under the terms of the Eclipse Public License 2.0
|
|
# which is available at https://www.eclipse.org/legal/epl-2.0/
|
|
#
|
|
# SPDX-License-Identifier: EPL-2.0
|
|
#
|
|
# Contributors:
|
|
# Red Hat, Inc. - initial API and implementation
|
|
#
|
|
|
|
# git ROOT directory used to mount filesystem
|
|
GIT_ROOT_DIRECTORY=$(git rev-parse --show-toplevel)
|
|
|
|
# Container image
|
|
IMAGE_NAME="eclipse/che-operator-olm-build"
|
|
|
|
init() {
|
|
BLUE='\033[1;34m'
|
|
GREEN='\033[0;32m'
|
|
RED='\033[0;31m'
|
|
NC='\033[0m'
|
|
BOLD='\033[1m'
|
|
}
|
|
|
|
check() {
|
|
if [ $# -eq 0 ]; then
|
|
printf "%bError: %bNo script provided. Command is $ docker-run.sh <script-to-run> [optional-arguments-of-script-to-run]\n" "${RED}" "${NC}"
|
|
exit 1
|
|
fi
|
|
echo "check $1"
|
|
if [ ! -f "$1" ]; then
|
|
printf "%bError: %bscript %b provided is not existing. Command is $ docker-run.sh <script-to-run> [optional-arguments-of-script-to-run]\n" "${RED}" "${NC}" "${1}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
# Build image
|
|
build() {
|
|
printf "%bBuilding image %b${IMAGE_NAME}${NC}..." "${BOLD}" "${BLUE}"
|
|
if docker build -t ${IMAGE_NAME} > docker-build-log 2>&1 -<<EOF
|
|
FROM golang:1.16-alpine
|
|
ARG OPERATOR_SDK_VERSION
|
|
RUN apk add --no-cache --update curl bash py-pip jq skopeo && pip install yq
|
|
WORKDIR /che-operator
|
|
EOF
|
|
then
|
|
printf "%b[OK]%b\n" "${GREEN}" "${NC}"
|
|
rm docker-build-log
|
|
else
|
|
printf "%bFailure%b\n" "${RED}" "${NC}"
|
|
cat docker-build-log
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
|
|
run() {
|
|
printf "%bRunning%b $*\n" "${BOLD}" "${NC}"
|
|
if docker run --rm -it -v "${GIT_ROOT_DIRECTORY}":/che-operator --entrypoint=/bin/bash ${IMAGE_NAME} "$@"
|
|
then
|
|
printf "Script execution %b[OK]%b\n" "${GREEN}" "${NC}"
|
|
else
|
|
printf "%bFail to run the script%b\n" "${RED}" "${NC}"
|
|
exit 1
|
|
fi
|
|
}
|
|
|
|
init "$@"
|
|
check "$@"
|
|
build "$@"
|
|
run "$@"
|