grpclib/pi.yaml

65 lines
1.2 KiB
YAML
Raw Normal View History

- !Image
name: env36
from: !DockerImage python:3.6-slim
2017-11-02 18:31:58 +00:00
repository: localhost/grpclib/env36
tasks:
- run: pip3 install --no-cache-dir -r {{reqs}}
reqs: !File "requirements.txt"
- !Image
name: env35
from: !DockerImage python:3.5.1-slim
repository: localhost/grpclib/env35
tasks:
- run: pip3 install --no-cache-dir -r {{reqs}}
reqs: !File "requirements.txt"
2017-11-30 12:53:09 +00:00
- !Image
name: docs
from: env36
repository: localhost/grpclib/docs
tasks:
- run: apk add --no-cache ca-certificates
- run: update-ca-certificates
2018-08-09 15:35:12 +00:00
- run: pip3 install -U setuptools
- run: pip3 install --no-cache-dir -r {{requirements}}
requirements: !File docs/requirements.txt
- !Command
name: server
image: env36
run: python3 -m helloworld.server
network-name: server
environ:
PYTHONPATH: example
ports:
- !Expose { port: 50051, as: 50051 }
- !Command
name: client
image: env36
run: python3 -m helloworld.client
environ:
PYTHONPATH: example
2017-11-30 12:53:09 +00:00
- !Command
name: build docs
image: docs
run: sphinx-build -b html docs build
2018-08-09 15:35:12 +00:00
environ:
PYTHONPATH: .
- !Command
name: test36
image: env36
run: py.test
environ:
PYTHONPATH: .
- !Command
name: test35
image: env35
run: py.test
environ:
PYTHONPATH: .