-
Notifications
You must be signed in to change notification settings - Fork 332
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #93 from sameersbn/new-updates
updated base image and ci pipeline
- Loading branch information
Showing
4 changed files
with
376 additions
and
71 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,72 +1,327 @@ | ||
version: 2 | ||
jobs: | ||
build: | ||
working_directory: /workdir | ||
docker: | ||
- image: docker:18.03.0-ce-git | ||
environment: | ||
IMAGE_NAME: "sameersbn/bind" | ||
version: 2.1 | ||
|
||
orbs: | ||
shellcheck: circleci/[email protected] | ||
docker: circleci/[email protected] | ||
go: circleci/[email protected] | ||
|
||
commands: | ||
docker-build: | ||
description: | | ||
Build and optionally deploy a Docker images | ||
parameters: | ||
dockerfile: | ||
default: Dockerfile | ||
description: 'Name of dockerfile to use, defaults to Dockerfile' | ||
type: string | ||
extra_build_args: | ||
default: '' | ||
description: > | ||
Extra flags to pass to docker build. For examples, see | ||
https://docs.docker.com/engine/reference/commandline/build | ||
type: string | ||
registry: | ||
default: docker.io | ||
description: | | ||
Comma separated list of registry to use, defaults to docker.io | ||
type: string | ||
image: | ||
description: Name of image to build | ||
type: string | ||
tag: | ||
default: $CIRCLE_SHA1 | ||
description: 'Image tag, defaults to the value of $CIRCLE_SHA1' | ||
type: string | ||
path: | ||
default: . | ||
description: > | ||
Path to the directory containing your Dockerfile and build context, | ||
defaults to . (working directory) | ||
type: string | ||
cache_from: | ||
default: '' | ||
description: > | ||
Comma-separated list of images, images will first be pulled, then passed | ||
as the --cache-from build argument | ||
https://docs.docker.com/engine/reference/commandline/build/ | ||
type: string | ||
no_output_timeout: | ||
default: 10m | ||
description: | | ||
No output timeout for build step | ||
type: string | ||
steps: | ||
- checkout | ||
- when: | ||
condition: <<parameters.cache_from>> | ||
steps: | ||
- run: | ||
name: Build image for <<parameters.registry>> | ||
no_output_timeout: <<parameters.no_output_timeout>> | ||
command: > | ||
echo "<<parameters.cache_from>>" | sed -n 1'p' | tr ',' '\n' | | ||
while read image; do | ||
echo "Pulling ${image}"; | ||
docker pull ${image} || true | ||
done | ||
docker_tag_args="" | ||
IFS="," read -ra DOCKER_REGISTRIES \<<< "<< parameters.registry >>" | ||
for registry in "${DOCKER_REGISTRIES[@]}"; do | ||
IFS="," read -ra DOCKER_TAGS \<<< "<< parameters.tag >>" | ||
for tag in "${DOCKER_TAGS[@]}"; do | ||
docker_tag_args="$docker_tag_args -t $registry/<<parameters.image>>:${tag}" | ||
done | ||
done | ||
- setup_remote_docker: | ||
version: 18.03.1-ce | ||
docker build | ||
<<#parameters.extra_build_args>><<parameters.extra_build_args>><</parameters.extra_build_args>> | ||
\ | ||
--cache-from <<parameters.cache_from>> \ | ||
-f <<parameters.path>>/<<parameters.dockerfile>> \ | ||
$docker_tag_args \ | ||
<<parameters.path>> | ||
- unless: | ||
condition: <<parameters.cache_from>> | ||
steps: | ||
- run: | ||
name: Building image for <<parameters.registry>> | ||
no_output_timeout: <<parameters.no_output_timeout>> | ||
command: > | ||
docker_tag_args="" | ||
IFS="," read -ra DOCKER_REGISTRIES \<<< "<< parameters.registry >>" | ||
for registry in "${DOCKER_REGISTRIES[@]}"; do | ||
IFS="," read -ra DOCKER_TAGS \<<< "<< parameters.tag >>" | ||
for tag in "${DOCKER_TAGS[@]}"; do | ||
docker_tag_args="$docker_tag_args -t $registry/<<parameters.image>>:${tag}" | ||
done | ||
done | ||
docker build | ||
<<#parameters.extra_build_args>><<parameters.extra_build_args>><</parameters.extra_build_args>> | ||
\ | ||
-f <<parameters.path>>/<<parameters.dockerfile>> \ | ||
$docker_tag_args \ | ||
<<parameters.path>> | ||
docker-save: | ||
description: | | ||
Save one or more images to a tar archive | ||
parameters: | ||
registry: | ||
default: docker.io | ||
description: | | ||
Comma separated list of registry to use, defaults to docker.io | ||
type: string | ||
image: | ||
description: Name of image to build | ||
type: string | ||
tag: | ||
default: $CIRCLE_SHA1 | ||
description: 'Image tag, defaults to the value of $CIRCLE_SHA1' | ||
type: string | ||
steps: | ||
- run: | ||
name: Docker info | ||
command: | | ||
docker version | ||
docker info | ||
name: Save image to tar archive | ||
command: > | ||
docker_images="" | ||
IFS="," read -ra DOCKER_REGISTRIES \<<< "<< parameters.registry >>" | ||
- restore_cache: | ||
keys: | ||
- cache-{{ .Branch }} | ||
for registry in "${DOCKER_REGISTRIES[@]}"; do | ||
IFS="," read -ra DOCKER_TAGS \<<< "<< parameters.tag >>" | ||
for tag in "${DOCKER_TAGS[@]}"; do | ||
docker_images="$docker_images $registry/<<parameters.image>>:${tag}" | ||
done | ||
done | ||
mkdir -p ~/docker/ | ||
docker save -o ~/docker/docker-images.tar $docker_images | ||
- persist_to_workspace: | ||
root: ~/ | ||
paths: | ||
- /cache/layers.tar | ||
- docker | ||
|
||
docker-load: | ||
description: | | ||
Load tar archive | ||
steps: | ||
- attach_workspace: | ||
at: ~/ | ||
- run: | ||
name: Loading docker cache | ||
command: | | ||
if [[ -f /cache/layers.tar ]]; then | ||
docker load -i /cache/layers.tar | ||
fi | ||
name: Load images from tar archive | ||
command: > | ||
docker load -i ~/docker/docker-images.tar | ||
- run: | ||
name: Build docker image | ||
command: | | ||
docker build --cache-from=${IMAGE_NAME} -t ${IMAGE_NAME} . | ||
docker-publish: | ||
description: | | ||
Build and optionally deploy a Docker images | ||
parameters: | ||
pr: | ||
default: '' | ||
type: string | ||
registry: | ||
default: docker.io | ||
description: | | ||
Comma separated list of registry to use, defaults to docker.io | ||
type: string | ||
image: | ||
description: Name of image to build | ||
type: string | ||
tag: | ||
default: $CIRCLE_SHA1 | ||
description: 'Image tag, defaults to the value of $CIRCLE_SHA1' | ||
type: string | ||
steps: | ||
- unless: | ||
condition: <<parameters.pr>> | ||
steps: | ||
- run: | ||
name: Publish image for <<parameters.registry>> | ||
command: > | ||
IFS="," read -ra DOCKER_REGISTRIES \<<< "<< parameters.registry >>" | ||
- run: | ||
name: Launching container for testing | ||
command: | | ||
docker network create testnet | ||
docker run --name bind-server -d --net testnet $IMAGE_NAME | ||
sleep 5 | ||
for registry in "${DOCKER_REGISTRIES[@]}"; do | ||
IFS="," read -ra DOCKER_TAGS \<<< "<< parameters.tag >>" | ||
for tag in "${DOCKER_TAGS[@]}"; do | ||
docker push $registry/<< parameters.image>>:${tag} | ||
done | ||
done | ||
jobs: | ||
build: | ||
executor: docker/machine | ||
steps: | ||
- checkout | ||
- docker-build: | ||
registry: docker.io,quay.io | ||
image: sameersbn/bind | ||
tag: ${CIRCLE_TAG:-latest} | ||
cache_from: docker.io/sameersbn/bind:latest | ||
- docker-save: | ||
registry: docker.io,quay.io | ||
image: sameersbn/bind | ||
tag: ${CIRCLE_TAG:-latest} | ||
|
||
test: | ||
executor: docker/machine | ||
steps: | ||
- checkout | ||
- docker-load | ||
- run: | ||
name: Create test network | ||
command: docker network create testnet | ||
- run: | ||
name: Launch bind container | ||
command: docker run --name bind -d --net testnet sameersbn/bind:${CIRCLE_TAG:-latest} | ||
- run: | ||
name: Wait for container bootup | ||
command: sleep 15 | ||
- run: | ||
name: Container info | ||
command: docker ps -a | ||
- run: | ||
name: Testing image | ||
name: Test image | ||
command: | | ||
docker run --rm --net testnet $IMAGE_NAME host www.google.com bind-server | ||
docker run --rm --net testnet sameersbn/bind:${CIRCLE_TAG:-latest} host www.google.com bind | ||
publish-dockerhub: | ||
executor: docker/machine | ||
steps: | ||
- docker-load | ||
- docker/check: | ||
registry: docker.io | ||
docker-username: DOCKER_LOGIN | ||
docker-password: DOCKER_PASSWORD | ||
- docker-publish: | ||
registry: docker.io | ||
image: sameersbn/bind | ||
tag: ${CIRCLE_TAG:-latest} | ||
|
||
publish-quay: | ||
executor: docker/machine | ||
steps: | ||
- docker-load | ||
- docker/check: | ||
registry: quay.io | ||
docker-username: DOCKER_LOGIN | ||
docker-password: DOCKER_PASSWORD | ||
- docker-publish: | ||
registry: quay.io | ||
image: sameersbn/bind | ||
tag: ${CIRCLE_TAG:-latest} | ||
|
||
release: | ||
executor: | ||
name: go/default | ||
tag: '1.14' | ||
steps: | ||
- checkout | ||
- run: | ||
name: Installing github-release tool | ||
command: go get github.com/meterup/github-release | ||
- run: | ||
name: Generate docker build image cache | ||
name: Creating github release | ||
command: | | ||
mkdir -p /cache | ||
docker save -o /cache/layers.tar ${IMAGE_NAME} | ||
- save_cache: | ||
key: cache-{{ .Branch }}-{{ epoch }} | ||
paths: | ||
- /cache/layers.tar | ||
PRE_RELEASE=${CIRCLE_TAG/${CIRCLE_TAG%-rc[0-9]*}/} | ||
github-release delete -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_TAG} 2>/dev/null ||: | ||
./scripts/release-notes.sh ${CIRCLE_TAG} | github-release release ${PRE_RELEASE:+-p} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_TAG} -d - | ||
for f in $(find /tmp/dist -type f); do github-release upload -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -t ${CIRCLE_TAG} -n $(basename ${f}) -f ${f} ; done | ||
workflows: | ||
version: 2 | ||
build-and-test: | ||
build-test-and-release: | ||
jobs: | ||
- shellcheck/check: | ||
name: shellcheck | ||
ignore: SC2086,SC2181 | ||
filters: | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
- build: | ||
requires: | ||
- shellcheck | ||
filters: | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
- test: | ||
requires: | ||
- build | ||
filters: | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
- publish-dockerhub: | ||
context: dockerhub | ||
requires: | ||
- test | ||
filters: | ||
branches: | ||
only: /.*/ | ||
only: master | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
- publish-quay: | ||
context: quay | ||
requires: | ||
- test | ||
filters: | ||
tags: | ||
only: /.*/ | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
branches: | ||
only: master | ||
- release: | ||
context: github | ||
requires: | ||
- publish-dockerhub | ||
- publish-quay | ||
filters: | ||
tags: | ||
only: /^([0-9]+)\.([0-9]+)\.([0-9]+)(?:-([0-9A-Za-z-]+(?:\.[0-9A-Za-z-]+)*))?(?:\+[0-9A-Za-z-]+)?$/ | ||
branches: | ||
ignore: /.*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
FROM ubuntu:bionic-20190612 AS add-apt-repositories | ||
FROM ubuntu:bionic-20200403 AS add-apt-repositories | ||
|
||
RUN apt-get update \ | ||
&& DEBIAN_FRONTEND=noninteractive apt-get install -y gnupg \ | ||
&& apt-key adv --fetch-keys http://www.webmin.com/jcameron-key.asc \ | ||
&& echo "deb http://download.webmin.com/download/repository sarge contrib" >> /etc/apt/sources.list | ||
|
||
FROM ubuntu:bionic-20190612 | ||
FROM ubuntu:bionic-20200403 | ||
|
||
LABEL maintainer="[email protected]" | ||
|
||
|
Oops, something went wrong.