In theory this should speed it up a little. I suppose it was initially added because we use docker but it doesn't seem that is requirement here.
16 lines
185 B
YAML
16 lines
185 B
YAML
language: python
|
|
|
|
services:
|
|
- docker
|
|
|
|
before_install:
|
|
- docker pull ubuntu:16.04
|
|
|
|
script:
|
|
- set -o errexit
|
|
- echo "running..."
|
|
- docker build .
|
|
|
|
notifications:
|
|
email: false
|