Skip to content
Snippets Groups Projects
Unverified Commit daeb7ab3 authored by Yorick Peterse's avatar Yorick Peterse
Browse files

Use a directed acyclic graph for CI tests

This allows us to start certains builds (e.g. Windows runtime tests)
without having to wait for all prior builds to finish.
parent 13ff6916
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -42,6 +42,9 @@ test:runtime:linux:
paths:
- .cargo
- vm/target
needs:
- test:compiler:linux
- test:ivm:linux
 
release:compiled:linux-gnu:
image: registry.gitlab.com/inko-lang/development-docker-images:rust-stable
Loading
Loading
@@ -59,3 +62,5 @@ release:compiled:linux-gnu:
paths:
- .cargo
- vm/target
needs:
- test:runtime:linux
Loading
Loading
@@ -48,6 +48,9 @@ test:runtime:macos:
paths:
- .cargo
- vm/target
needs:
- test:compiler:macos
- test:ivm:macos
 
release:compiled:macos:
stage: release
Loading
Loading
@@ -67,3 +70,5 @@ release:compiled:macos:
paths:
- .cargo
- vm/target
needs:
- test:runtime:macos
Loading
Loading
@@ -49,6 +49,9 @@ test:runtime:windows:
paths:
- .cargo
- vm/target
needs:
- test:compiler:windows
- test:ivm:windows
 
release:compiled:windows:
stage: release
Loading
Loading
@@ -68,3 +71,5 @@ release:compiled:windows:
paths:
- .cargo
- vm/target
needs:
- test:runtime:windows
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment