Skip to content

Commit

Permalink
Deploy client in parallel to dashboard
Browse files Browse the repository at this point in the history
Previously the `token-dashboard` module was being built in CI flow after the
`client` module. But we don't need to wait for building of the client to build
dashboard, those jobs don't depend on each other. This means we can run them in
parallel.
  • Loading branch information
michalinacienciala committed Sep 1, 2022
1 parent 8c5814e commit bd7b3dd
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 16 deletions.
7 changes: 3 additions & 4 deletions actions/notify-workflow-completed/dist/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@
"github.com/keep-network/tbtc-v2": {
"workflow": "contracts.yml",
"downstream": [
"github.com/keep-network/keep-core/client"
"github.com/keep-network/keep-core/client",
"github.com/threshold-network/token-dashboard"
]
},
"github.com/keep-network/keep-core/client": {
"workflow": "client.yml",
"downstream": [
"github.com/threshold-network/token-dashboard"
]
"downstream": []
},
"github.com/threshold-network/token-dashboard": {
"workflow": "dashboard-ci.yml",
Expand Down
7 changes: 3 additions & 4 deletions actions/run-workflow/dist/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@
"github.com/keep-network/tbtc-v2": {
"workflow": "contracts.yml",
"downstream": [
"github.com/keep-network/keep-core/client"
"github.com/keep-network/keep-core/client",
"github.com/threshold-network/token-dashboard"
]
},
"github.com/keep-network/keep-core/client": {
"workflow": "client.yml",
"downstream": [
"github.com/threshold-network/token-dashboard"
]
"downstream": []
},
"github.com/threshold-network/token-dashboard": {
"workflow": "dashboard-ci.yml",
Expand Down
7 changes: 3 additions & 4 deletions actions/upstream-builds-query/dist/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@
"github.com/keep-network/tbtc-v2": {
"workflow": "contracts.yml",
"downstream": [
"github.com/keep-network/keep-core/client"
"github.com/keep-network/keep-core/client",
"github.com/threshold-network/token-dashboard"
]
},
"github.com/keep-network/keep-core/client": {
"workflow": "client.yml",
"downstream": [
"github.com/threshold-network/token-dashboard"
]
"downstream": []
},
"github.com/threshold-network/token-dashboard": {
"workflow": "dashboard-ci.yml",
Expand Down
7 changes: 3 additions & 4 deletions config/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,13 @@
"github.com/keep-network/tbtc-v2": {
"workflow": "contracts.yml",
"downstream": [
"github.com/keep-network/keep-core/client"
"github.com/keep-network/keep-core/client",
"github.com/threshold-network/token-dashboard"
]
},
"github.com/keep-network/keep-core/client": {
"workflow": "client.yml",
"downstream": [
"github.com/threshold-network/token-dashboard"
]
"downstream": []
},
"github.com/threshold-network/token-dashboard": {
"workflow": "dashboard-ci.yml",
Expand Down

0 comments on commit bd7b3dd

Please sign in to comment.