blob: f655d78aa677591b60e574d47e8f65c6ee22a9eb (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
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
|