From 54940d1143f715a7406a822fce3ff79f1f4e58f1 Mon Sep 17 00:00:00 2001 From: Alex Skrypnyk Date: Mon, 2 Oct 2023 18:01:05 +1100 Subject: [PATCH] Renamed to ci-runner. --- .circleci/config.yml | 6 +++--- README.md | 18 +++++++++--------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index f1e9596..4074eb6 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -25,13 +25,13 @@ jobs: command: curl -fsSL https://goss.rocks/install | sh && goss --version - run: name: Build image - command: docker build -t drevops/ci-builder:test-ci . + command: docker build -t drevops/ci-runner:test-ci . - run: name: Show images information command: docker images - run: name: Test image - command: dgoss run -i drevops/ci-builder:test-ci + command: dgoss run -i drevops/ci-runner:test-ci - run: name: Show versions - command: ./versions.sh "drevops/ci-builder:test-ci" + command: ./versions.sh "drevops/ci-runner:test-ci" diff --git a/README.md b/README.md index e816507..8d66013 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ -# CI Builder -Docker image used in CI as a builder container +# CI Runner +Docker image used in CI as a runner container -[![CircleCI](https://circleci.com/gh/drevops/ci-builder.svg?style=shield)](https://circleci.com/gh/drevops/ci-builder) -![GitHub release (latest by date)](https://img.shields.io/github/v/release/drevops/ci-builder) -[![DockerHub](https://img.shields.io/docker/pulls/drevops/ci-builder.svg)](https://hub.docker.com/r/drevops/ci-builder/) -![LICENSE](https://img.shields.io/github/license/drevops/ci-builder) +[![CircleCI](https://circleci.com/gh/drevops/ci-runner.svg?style=shield)](https://circleci.com/gh/drevops/ci-runner) +![GitHub release (latest by date)](https://img.shields.io/github/v/release/drevops/ci-runner) +[![DockerHub](https://img.shields.io/docker/pulls/drevops/ci-runner.svg)](https://hub.docker.com/r/drevops/ci-runner/) +![LICENSE](https://img.shields.io/github/license/drevops/ci-runner) -It contains several tools required to run Docker-based builds (in alphabetical order): +It contains several tools required to run Docker-based CI builds (in alphabetical order): - [Ahoy](https://github.com/ahoy-cli/ahoy) - workflow helper - [Aspell](https://github.com/GNUAspell/aspell) - English language spellcheker - [Bats](https://github.com/bats-core/bats-core) - Bash Automated Testing System (2018) @@ -31,13 +31,13 @@ It contains several tools required to run Docker-based builds (in alphabetical o Make sure to **always** pin the version of this image to the tag: ``` -drevops/ci-builder:23.8.1 +drevops/ci-runner:23.8.1 ``` For testing purposes, you can use the `canary` tag: ``` -drevops/ci-builder:canary +drevops/ci-runner:canary ``` ## Maintenance and releasing