diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-11 15:51:44 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2020-01-11 15:57:26 +0300 |
commit | bdcd1d8d8de880ca810fc74cd4389622292c35d2 (patch) | |
tree | 8a353f39b007378f2e1c4359733301abbe90ece4 | |
parent | Travis: cache pip packages (diff) | |
download | fr24feed-bdcd1d8d8de880ca810fc74cd4389622292c35d2.tar.gz fr24feed-bdcd1d8d8de880ca810fc74cd4389622292c35d2.zip |
Travis: add comments to the workarounds
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 990447f..6414cb9 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,10 @@ +# docker-compose is missing on arm64, have to install it manually. +# language: python seems to force arch: amd64, which is not what I want. language: minimal os: linux dist: bionic arch: arm64 +# Dunno why cache: pip doesn't simply work. cache: directories: - "$HOME/.cache/pip" |