sporestack-python/.woodpecker.yml

41 lines
961 B
YAML
Raw Normal View History

2022-02-10 21:47:57 +00:00
pipeline:
2022-11-02 00:00:00 +00:00
python-3.8:
group: test
2022-11-28 16:49:50 +00:00
image: python:3.8
2022-11-02 00:00:00 +00:00
commands:
2023-10-29 04:50:16 +00:00
- pip install pipenv==2023.10.24
2022-11-02 00:00:00 +00:00
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*
2022-02-10 21:47:57 +00:00
python-3.9:
group: test
2022-11-28 16:49:50 +00:00
image: python:3.9
2022-02-10 21:47:57 +00:00
commands:
2023-10-29 04:50:16 +00:00
- pip install pipenv==2023.10.24
2022-02-10 21:47:57 +00:00
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*
python-3.10:
group: test
2022-11-28 16:49:50 +00:00
image: python:3.10
2022-02-10 21:47:57 +00:00
commands:
2023-10-29 04:50:16 +00:00
- pip install pipenv==2023.10.24
2022-11-02 00:00:00 +00:00
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*
python-3.11:
group: test
2022-11-28 16:49:50 +00:00
image: python:3.11
2022-11-02 00:00:00 +00:00
commands:
2023-10-29 04:50:16 +00:00
- pip install pipenv==2023.10.24
2022-02-10 21:47:57 +00:00
- pipenv install --dev --deploy
- pipenv run almake test
- pipenv run almake build-dist
- sha256sum dist/*