[UPDATE][CI] Simplify parallelism

This commit is contained in:
Bruno BELANYI 2020-10-15 20:07:30 +02:00
parent 130c62dfc5
commit 23bae57bcb

View file

@ -1,6 +1,6 @@
--- ---
kind: pipeline kind: pipeline
name: verify linking name: default
steps: steps:
- name: link & unlink - name: link & unlink
@ -12,11 +12,6 @@ steps:
- make link-all - make link-all
- make unlink-all - make unlink-all
---
kind: pipeline
name: verify install
steps:
- name: full install - name: full install
image: oblique/archlinux-yay image: oblique/archlinux-yay
pull: always pull: always
@ -36,3 +31,4 @@ steps:
from_secret: matrix_username from_secret: matrix_username
password: password:
from_secret: matrix_password from_secret: matrix_password
depends_on: [ "link & unlink", "full install" ]