aboutsummaryrefslogblamecommitdiffstatshomepage
path: root/.travis.yml
blob: f655d78aa677591b60e574d47e8f65c6ee22a9eb (plain) (tree)
1
2
3
4
5
6
7
         
           
                 
 
     

                   




                                     
                          


                                      
                    

                                                       

                                         
                                                                  
os: linux
dist: focal
language: minimal

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
      # buildx isn't installed on Focal.
      before_install: make buildx/install
      script: make login && make buildx/create && make buildx/push