Merge pull request 'fix: fix: parallelize ci.yml steps with depends_on (#1052)' (#1056) from fix/issue-1052 into master
This commit is contained in:
commit
37f60850aa
1 changed files with 9 additions and 1 deletions
|
|
@ -24,6 +24,7 @@ clone:
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: bootstrap-deps
|
- name: bootstrap-deps
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
|
|
@ -34,6 +35,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: foundry-suite
|
- name: foundry-suite
|
||||||
|
depends_on: [bootstrap-deps]
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
|
|
@ -48,6 +50,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: contracts-local-fork
|
- name: contracts-local-fork
|
||||||
|
depends_on: [foundry-suite]
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
environment:
|
environment:
|
||||||
HARB_ENV: BASE_SEPOLIA_LOCAL_FORK
|
HARB_ENV: BASE_SEPOLIA_LOCAL_FORK
|
||||||
|
|
@ -64,6 +67,7 @@ steps:
|
||||||
# which is not configured. Re-add when RPC secret is provisioned.
|
# which is not configured. Re-add when RPC secret is provisioned.
|
||||||
|
|
||||||
- name: transpiler-tests
|
- name: transpiler-tests
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
when:
|
when:
|
||||||
- event: pull_request
|
- event: pull_request
|
||||||
|
|
@ -74,7 +78,6 @@ steps:
|
||||||
- |
|
- |
|
||||||
bash -c '
|
bash -c '
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
export PATH=/root/.foundry/bin:$PATH
|
|
||||||
cd tools/push3-transpiler
|
cd tools/push3-transpiler
|
||||||
npm install --silent
|
npm install --silent
|
||||||
npm run build
|
npm run build
|
||||||
|
|
@ -82,6 +85,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: evolution-tests
|
- name: evolution-tests
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
when:
|
when:
|
||||||
- event: pull_request
|
- event: pull_request
|
||||||
|
|
@ -102,6 +106,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: single-package-manager
|
- name: single-package-manager
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
|
|
@ -114,6 +119,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: validate-evolution-patch
|
- name: validate-evolution-patch
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
when:
|
when:
|
||||||
- event: pull_request
|
- event: pull_request
|
||||||
|
|
@ -133,6 +139,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: optimizer-not-mutated
|
- name: optimizer-not-mutated
|
||||||
|
depends_on: []
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
commands:
|
commands:
|
||||||
- |
|
- |
|
||||||
|
|
@ -146,6 +153,7 @@ steps:
|
||||||
'
|
'
|
||||||
|
|
||||||
- name: node-quality
|
- name: node-quality
|
||||||
|
depends_on: [foundry-suite]
|
||||||
image: registry.niovi.voyage/harb/node-ci:latest
|
image: registry.niovi.voyage/harb/node-ci:latest
|
||||||
environment:
|
environment:
|
||||||
CI: "true"
|
CI: "true"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue