Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
add runtime to CI check
Browse files Browse the repository at this point in the history
  • Loading branch information
joepetrowski committed Jul 18, 2023
1 parent 60b1e08 commit ff122fc
Showing 1 changed file with 17 additions and 8 deletions.
25 changes: 17 additions & 8 deletions scripts/ci/gitlab/pipeline/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,19 @@ build-runtime-assets:
variables:
RUNTIME_PATH: "parachains/runtimes/assets"

build-runtime-collectives:
build-runtime-bridge-hubs:
<<: *build-runtime-template
variables:
RUNTIME_PATH: "parachains/runtimes/collectives"
RUNTIME_PATH: "parachains/runtimes/bridge-hubs"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-assets
- job: build-runtime-bridge-hubs
artifacts: false

build-runtime-bridge-hubs:
build-runtime-collectives:
<<: *build-runtime-template
variables:
RUNTIME_PATH: "parachains/runtimes/bridge-hubs"
RUNTIME_PATH: "parachains/runtimes/collectives"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-collectives
Expand All @@ -101,7 +101,16 @@ build-runtime-contracts:
RUNTIME_PATH: "parachains/runtimes/contracts"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-collectives
- job: build-runtime-contracts
artifacts: false

build-runtime-coretime:
<<: *build-runtime-template
variables:
RUNTIME_PATH: "parachains/runtimes/coretime"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-coretime
artifacts: false

build-runtime-starters:
Expand All @@ -110,7 +119,7 @@ build-runtime-starters:
RUNTIME_PATH: "parachains/runtimes/starters"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-assets
- job: build-runtime-starters
artifacts: false

build-runtime-testing:
Expand All @@ -119,5 +128,5 @@ build-runtime-testing:
RUNTIME_PATH: "parachains/runtimes/testing"
# this is an artificial job dependency, for pipeline optimization using GitLab's DAGs
needs:
- job: build-runtime-starters
- job: build-runtime-testing
artifacts: false

0 comments on commit ff122fc

Please sign in to comment.