mirror of
https://github.com/clearlinux/swupd-client.git
synced 2026-09-07 14:11:52 +00:00
This change adds a simple "./continous.sh" script which will allow developers to test their changes against "clearlinux:latest" within a clean Docker container. If the container does not already exist, it will be created on demand. Future builds will be done near instantly within the container. Signed-off-by: Ikey Doherty <michael.i.doherty@intel.com>
44 lines
1.2 KiB
Bash
Executable File
44 lines
1.2 KiB
Bash
Executable File
#!/bin/bash
|
|
#
|
|
# This file is part of swupd-client.
|
|
#
|
|
# Copyright © 2017 Intel Corporation
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, version 2 or later of the License.
|
|
#
|
|
|
|
DIRN="$(basename $(pwd))"
|
|
PROJ_NAME="swupd-client"
|
|
PROJ_CI_NAME="docker-ci-${PROJ_NAME}"
|
|
|
|
# Check docker is available
|
|
if ! type docker &>/dev/null; then
|
|
echo "Please ensure docker is installed first"
|
|
exit 1
|
|
fi
|
|
|
|
# Check docker is running
|
|
if ! docker version &>/dev/null; then
|
|
echo "Docker is not running"
|
|
exit 1
|
|
fi
|
|
|
|
# Check we're in the right directory
|
|
if [[ "${DIRN}" != "${PROJ_NAME}" ]]; then
|
|
echo "Please run from the root ${PROJ_NAME} directory"
|
|
exit 1
|
|
fi
|
|
|
|
# Check that docker-ci image is installed
|
|
if ! docker inspect "${PROJ_CI_NAME}" &>/dev/null; then
|
|
echo "${PROJ_CI_NAME} not installed, building docker image.."
|
|
echo "....Please wait, this may take some time."
|
|
docker build -t "${PROJ_CI_NAME}" docker/ || exit 1
|
|
fi
|
|
|
|
# Build the current tree through bind mount within the docker image
|
|
echo "Beginning build of ${PROJ_NAME}..."
|
|
exec docker run -ti -v $(pwd):/source:ro --rm "${PROJ_CI_NAME}"
|