halozatrombolas/.drone.yml

24 lines
467 B
YAML
Raw Permalink Normal View History

2020-09-24 13:01:30 +02:00
kind: pipeline
type: docker
2020-09-24 15:55:08 +02:00
name: run_algo
2020-09-24 13:01:30 +02:00
steps:
2020-09-24 15:55:08 +02:00
- name: algo
2020-09-24 15:53:03 +02:00
image: "python:3.8"
commands:
- pip3 install -r requirements.txt
- python3 destroy_p3.py -g GBA1000.txt
2020-09-24 15:55:08 +02:00
---
kind: pipeline
type: docker
name: check_result
2020-09-24 15:55:31 +02:00
steps:
2020-09-24 15:55:08 +02:00
- name: result
2020-09-24 13:01:30 +02:00
image: "python:3.8"
commands:
- pip3 install -r requirements.txt
- python3 destroy_p3.py -g GBA1000.txt > gba1000d.txt
2020-09-24 15:55:08 +02:00
- python3 analyse_p3.py -g GBA1000.txt -d gba1000d.txt