🏗️ Try to use directed acyclic graphs in CI pipeline
This commit is contained in:
parent
3d55244491
commit
5f134d2b34
|
@ -33,6 +33,8 @@ variables:
|
||||||
paths:
|
paths:
|
||||||
- local.tar
|
- local.tar
|
||||||
expire_in: 3 hours
|
expire_in: 3 hours
|
||||||
|
needs:
|
||||||
|
- carton
|
||||||
after_script:
|
after_script:
|
||||||
- tar cf local.tar local/
|
- tar cf local.tar local/
|
||||||
|
|
||||||
|
@ -51,14 +53,14 @@ variables:
|
||||||
|
|
||||||
.sqlite_template: &sqlite_definition
|
.sqlite_template: &sqlite_definition
|
||||||
<<: *tests_template
|
<<: *tests_template
|
||||||
dependencies:
|
needs:
|
||||||
- carton_sqlite
|
- carton_sqlite
|
||||||
services:
|
services:
|
||||||
- name: rroemhild/test-openldap
|
- name: rroemhild/test-openldap
|
||||||
alias: rroemhild-test-openldap
|
alias: rroemhild-test-openldap
|
||||||
.pg_template: &pg_definition
|
.pg_template: &pg_definition
|
||||||
<<: *tests_template
|
<<: *tests_template
|
||||||
dependencies:
|
needs:
|
||||||
- carton_postgresql
|
- carton_postgresql
|
||||||
services:
|
services:
|
||||||
- name: postgres:11
|
- name: postgres:11
|
||||||
|
@ -67,7 +69,7 @@ variables:
|
||||||
alias: rroemhild-test-openldap
|
alias: rroemhild-test-openldap
|
||||||
.mysql_template: &mysql_definition
|
.mysql_template: &mysql_definition
|
||||||
<<: *tests_template
|
<<: *tests_template
|
||||||
dependencies:
|
needs:
|
||||||
- carton_mysql
|
- carton_mysql
|
||||||
services:
|
services:
|
||||||
- name: mariadb:10.3
|
- name: mariadb:10.3
|
||||||
|
|
Loading…
Reference in New Issue