When trying to install docker-compose
manually (due to Docker-compose is not available on arm64) w/ language: python
, arch: arm64
was seemingly ignored. Please see the following job: https://travis-ci.com/egor-tensin/fr24feed/builds/143994508.
The workaround I used was to use language: minimal
and install the required tools manually:
language: minimal
os: linux
dist: bionic
arch: arm64
addons:
apt:
update: true
packages:
- python3-dev
- python3-pip
- python3-setuptools
- python3-wheel
install:
- pip3 install -IU docker-compose
But this is quite inconvenient.