aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
blob: 6414cb90d01abc81f87b0462293e5baacbcf4ff1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# 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"
addons:
  apt:
    update: true
    packages:
      - python3-dev
      - python3-pip
      - python3-setuptools
      - python3-wheel
services:
  - docker
install: pip3 install -IU docker-compose
script: docker-compose build