aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/.travis.yml
blob: ee35a629ea5dbbf6fa45a43414386563a4e58b9b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
language: minimal
os: linux
dist: focal

jobs:
  fast_finish: true

  include:
    - name: Test locally
      language: python
      python: '3.6'
      script: ./.travis/local/test.sh
    - name: Test in Docker
      services: [docker]
      script: ./.travis/docker/test.sh
    - stage: publish
      name: 'Docker: build & publish multi-arch images'
      if: branch = master
      services: [docker]
      # buildx isn't installed on Focal.
      before_install: make buildx/install
      script: make login && make buildx/create && make buildx/push