13 lines
198 B
YAML
13 lines
198 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: default
|
||
|
|
||
|
steps:
|
||
|
- name: compile
|
||
|
image: python
|
||
|
commands:
|
||
|
- pip install wheel
|
||
|
- python setup.py bdist_wheel
|
||
|
- mkdir out
|
||
|
- cp dist/*.whl out/
|