You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
338 B
YAML
26 lines
338 B
YAML
kind: pipeline
|
|
name: python-3-7-alpine-3-10
|
|
|
|
clone:
|
|
skip_verify: true
|
|
|
|
steps:
|
|
- name: build
|
|
image: alpine:3.10
|
|
pull: always
|
|
commands:
|
|
- tests/run-ci-tests
|
|
---
|
|
kind: pipeline
|
|
name: python-3-8-alpine-3-13
|
|
|
|
clone:
|
|
skip_verify: true
|
|
|
|
steps:
|
|
- name: build
|
|
image: alpine:3.13
|
|
pull: always
|
|
commands:
|
|
- tests/run-ci-tests
|