Remove Composer cache configuration for Travis CI

This might be causing permissions issues, since the system user and the
Docker container root user are both trying to write to this location.
This commit is contained in:
Ben Ramsey
2019-12-04 16:16:41 -08:00
parent 8c055ec8b2
commit 0726ab03ac
3 changed files with 2 additions and 6 deletions
-4
View File
@@ -49,10 +49,6 @@ addons:
- libsodium-dev
- uuid-dev
cache:
directories:
- $HOME/.composer
before_install:
- travis_retry ./resources/scripts/travis-before-install.sh
- ./resources/scripts/cmd-proxy.sh ./resources/scripts/system-info.sh
+1 -1
View File
@@ -26,7 +26,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
### Fixed
* Fix `RandomNodeProvider` behavior on 32-bit systems. The `RandomNodeProvider`
was converting a 6-byte string to a a decimal number, which is a 48-bit,
was converting a 6-byte string to a decimal number, which is a 48-bit,
unsigned integer. This caused problems on 32-bit systems and has now been
resolved.
+1 -1
View File
@@ -18,7 +18,7 @@ cmd_proxy=""
if [ "${architecture}" = "arm32" ]; then
image="benramsey/ramsey-uuid:php-${php_version}-arm32v7"
volumes="-v ${PWD}:/app -v ${HOME}/.composer:/root/.composer"
volumes="-v ${PWD}:/app"
cmd_proxy="docker run --rm ${volumes} -w /app ${image}"
fi