Skip to content

Commit

Permalink
Use "beeshive" Docker organization to host CI images
Browse files Browse the repository at this point in the history
This change allows delegation of image push permissions for other
contributors if required. Right now only Dmytro Serdiuk has push
permissions.
  • Loading branch information
extsoft committed Jul 1, 2019
1 parent 12aac20 commit 014755e
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .rultor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
architect: extsoft
docker:
image: extsoft/elegant-git-ci:2
image: beeshive/elegant-git-ci:2
as_root: true
merge:
fast-forward: only
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sudo: required
language: bash
services: docker
script: docker run -t --rm -v $PWD:/eg extsoft/elegant-git-ci:2 ./run-tests
script: docker run -t --rm -v $PWD:/eg beeshive/elegant-git-ci:2 ./run-tests
notifications:
email: false
8 changes: 4 additions & 4 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ A testing procedure consists of 3 steps:
3. validation of todo' correctness (for [0pdd](http://www.0pdd.com/p?name=bees-hive/elegant-git))

All these steps can be executed by
`docker run -it --rm -v $PWD:/eg extsoft/elegant-git-ci:2 ./run-tests`.
`docker run -it --rm -v $PWD:/eg beeshive/elegant-git-ci:2 ./run-tests`.

`extsoft/elegant-git-ci` Docker image is also used on CI. If the image requires modifications,
`beeshive/elegant-git-ci` Docker image is also used on CI. If the image requires modifications,
it has to be updated manually by the following instructions:
1. update `Dockerfile` (including `version` and `description`)
2. `docker build -t extsoft/elegant-git-ci:<version> .`
3. `docker push extsoft/elegant-git-ci:<version>`
2. `docker build -t beeshive/elegant-git-ci:<version> .`
3. `docker push beeshive/elegant-git-ci:<version>`

# Unit testing
## Addons
Expand Down

0 comments on commit 014755e

Please sign in to comment.