Skip to content

Commit c51a9df

Browse files
authored
Merge pull request doctrine#1658 from alcaeus/fix-build-pipeline
Allow unauthenticated install of mongodb-org
2 parents e36d2e9 + 245d338 commit c51a9df

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.travis.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -22,17 +22,15 @@ env:
2222
matrix:
2323
include:
2424
- php: 5.6
25-
env: DRIVER_VERSION="1.6.3" SERVER_VERSION="3.0" COMPOSER_FLAGS="--prefer-lowest" KEY_ID="7F0CEB10"
26-
- php: 5.6
27-
env: DRIVER_VERSION="stable" SERVER_VERSION="3.2" KEY_ID="EA312927"
25+
env: DRIVER_VERSION="1.6.3" COMPOSER_FLAGS="--prefer-lowest" SERVER_VERSION="3.2" KEY_ID="EA312927"
2826

2927
before_install:
3028
- sudo apt-key adv --keyserver ${KEY_SERVER} --recv ${KEY_ID}
3129
- echo "deb ${MONGO_REPO_URI} ${MONGO_REPO_TYPE}${SERVER_VERSION} multiverse" | sudo tee ${SOURCES_LOC}
3230
- sudo apt-get update -qq
3331

3432
install:
35-
- sudo apt-get install mongodb-org
33+
- sudo apt-get --allow-unauthenticated install mongodb-org
3634
- if nc -z localhost 27017; then sudo service mongod stop; fi
3735
- sudo pip install mongo-orchestration
3836
- sudo mongo-orchestration start

0 commit comments

Comments
 (0)