Skip to content

Commit

Permalink
Renamed to ci-runner.
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSkrypnyk committed Oct 2, 2023
1 parent f85d926 commit 54940d1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
18 changes: 9 additions & 9 deletions README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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
Expand Down

0 comments on commit 54940d1

Please sign in to comment.