23 lines
460 B
YAML
23 lines
460 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: run_algo
|
|
|
|
steps:
|
|
- name: algo
|
|
image: "python:3.8"
|
|
commands:
|
|
- pip3 install -r requirements.txt
|
|
- python3 destroy_p3.py -g GBA1000.txt
|
|
|
|
---
|
|
|
|
kind: pipeline
|
|
type: docker
|
|
name: check_result
|
|
|
|
- name: result
|
|
image: "python:3.8"
|
|
commands:
|
|
- pip3 install -r requirements.txt
|
|
- python3 destroy_p3.py -g GBA1000.txt > gba1000d.txt
|
|
- python3 analyse_p3.py -g GBA1000.txt -d gba1000d.txt |