Compare commits

...

2 Commits

Author SHA1 Message Date
61e414a3ce
multiple pipelines 2020-09-24 15:55:08 +02:00
dd43985224
duplicate step names 2020-09-24 15:53:19 +02:00

View File

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