multiple pipelines

This commit is contained in:
Torma Kristóf 2020-09-24 15:55:08 +02:00
parent dd43985224
commit 61e414a3ce
Signed by: tormakris
GPG Key ID: DC83C4F2C41B1047
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: run_algo
- 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