Skip to content

Commit f4b6b3c

Browse files
committed
travis: Clone official images in to working directory
* Don't pollute the home directory * Ignore the local git repo for sanity's sake.
1 parent ab68c36 commit f4b6b3c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/official-images

.travis.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ env:
55
- VARIANT=trusty
66

77
install:
8-
- git clone https://github.com/docker-library/official-images.git ~/official-images
8+
- git clone https://github.com/docker-library/official-images.git official-images
99

1010
before_script:
1111
- env | sort
1212
- image="bitcoind:$VARIANT"
1313

1414
script:
1515
- docker build -t "$image" .
16-
- ~/official-images/test/run.sh "$image"
16+
- official-images/test/run.sh "$image"
1717

1818
after_script:
1919
- docker images

0 commit comments

Comments
 (0)