Skip to content
This repository was archived by the owner on Sep 26, 2025. It is now read-only.

Commit 7fa5e1c

Browse files
committed
update documentation
1 parent 9164bc2 commit 7fa5e1c

File tree

3 files changed

+6
-12
lines changed

3 files changed

+6
-12
lines changed

.travis.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
language: python
22

3+
# We use env to test the configurations in parallel.
4+
# Add new configurations here
35
env:
46
- IDP_CONF=intelpython2_core
57
- IDP_CONF=intelpython2_full

README.md

Lines changed: 3 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,25 +7,17 @@ There is 1 subdirectory for every image to build.
77

88
python -m pytest tests
99

10-
Will build every image.
10+
Will build every image. Look at the test for example command lines.
1111

1212
## Adding an image
1313

1414
* copy one of the the existing directories
15-
* edit the dockerfile
16-
* add the directory name in test/test_build.py,.travis.yml, and scripts/images.py
15+
* See .travis.yml & images.py for directions on adding a new configuration
1716
* create a new automated build on docker hub, copying build setting of existing image
1817

19-
## Editing the description files
20-
21-
* Edit docker_repo.README.md
22-
* Copy to all repos
23-
24-
PYTHONPATH=. python scripts/update_readmes.py
25-
2618
## Publishing a new release
2719

28-
* Edit the Dockerfiles to refer to the new release
20+
* Change release name in images.py
2921
* Commit changes
3022
* Tag with the release name
3123

@@ -35,7 +27,6 @@ Will build every image.
3527

3628
git push
3729

38-
* On dockerhub, edit build settings for all repos to change build rule that generates the image with the latest tag
3930
* When travis-ci testing completes, push the tag
4031

4132
git push origin 2017.0.0

images.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ def test(self):
7171
print(' ',cmd)
7272
subprocess.check_call(cmd, shell=True)
7373

74+
# Add new configurations here
7475
all_confs = [Conf(2,'core'),
7576
Conf(2,'full'),
7677
Conf(3,'core'),

0 commit comments

Comments
 (0)