20 lines
219 B
YAML
20 lines
219 B
YAML
---
|
|
kind: pipeline
|
|
type: exec
|
|
name: build python3
|
|
|
|
trigger:
|
|
branch:
|
|
- master
|
|
|
|
platform:
|
|
os: linux
|
|
arch: amd64
|
|
|
|
steps:
|
|
- name: build
|
|
commands:
|
|
- ./run 3.10
|
|
- name: deploy
|
|
commands:
|
|
- cp ./python3-*.deb ~/ |