Compare commits

...

2 Commits

Author SHA1 Message Date
Torma Kristóf 61e414a3ce
multiple pipelines 2020-09-24 15:55:08 +02:00
Torma Kristóf dd43985224
duplicate step names 2020-09-24 15:53:19 +02:00
1 changed files with 11 additions and 4 deletions

View File

@ -1,16 +1,23 @@
kind: pipeline
type: docker
name: default
name: run_algo
steps:
- name: check_result
- name: algo
image: "python:3.8"
commands:
- pip3 install -r requirements.txt
- python3 destroy_p3.py -g GBA1000.txt
- name: check_result
---
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
- python3 analyse_p3.py -g GBA1000.txt -d gba1000d.txt