Skip to content

Commit

Permalink
pipeline fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ironoa committed Sep 4, 2024
1 parent d44b4f4 commit 7ac8d61
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 72 deletions.
78 changes: 10 additions & 68 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2.1
jobs:
checkDependencies:
docker:
- image: node:slim
- image: node:22-slim
steps:
- checkout
- run:
Expand All @@ -12,7 +12,7 @@ jobs:
checkCandidatesFile:
docker:
- image: node:22
- image: node:22-slim
resource_class: large
steps:
- checkout
Expand All @@ -24,7 +24,7 @@ jobs:
checkCoreESLint:
docker:
- image: node:22
- image: node:22-slim
resource_class: large
steps:
- checkout
Expand All @@ -36,7 +36,7 @@ jobs:
checkCommonESLint:
docker:
- image: node:22
- image: node:22-slim
resource_class: large
steps:
- checkout
Expand All @@ -49,7 +49,7 @@ jobs:
CommonUnitTests:
description: "Common Unit Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb
resource_class: xlarge
Expand All @@ -67,7 +67,7 @@ jobs:
ChaindataIntegrationTests:
description: "Chaindata Integration Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb
resource_class: xlarge
Expand All @@ -85,7 +85,7 @@ jobs:
ApiHandlerIntegrationTests:
description: "ApiHandler Integration Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb
resource_class: xlarge
Expand All @@ -103,7 +103,7 @@ jobs:
NominatorIntegrationTests:
description: "Nominator Integration Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb
resource_class: xlarge
Expand All @@ -121,7 +121,7 @@ jobs:
ScorekeeperIntegrationTests:
description: "Scorekeeper Integration Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb

Expand All @@ -140,7 +140,7 @@ jobs:
TelemetryIntegrationTests:
description: "Telemetry Integration Tests"
docker:
- image: node:22-bullseye
- image: node:22-slim
- image: mongo:6.0.9
name: mongodb

Expand Down Expand Up @@ -208,36 +208,6 @@ jobs:
command: |
/scripts/publish-image.sh web3f/otv-backend staging
publishGatewayImage:
docker:
- image: web3f/ci-commons:v3.2.3
steps:
- checkout
- setup_remote_docker
- run:
command: |
/scripts/publish-image.sh web3f/otv-gateway
publishTelemetryImage:
docker:
- image: web3f/ci-commons:v3.2.3
steps:
- checkout
- setup_remote_docker
- run:
command: |
/scripts/publish-image.sh web3f/otv-telemetry
publishWorkerImage:
docker:
- image: web3f/ci-commons:v3.2.3
steps:
- checkout
- setup_remote_docker
- run:
command: |
/scripts/publish-image.sh web3f/otv-worker
publishChart:
docker:
- image: web3f/ci-commons:v3.2.3
Expand Down Expand Up @@ -319,7 +289,6 @@ workflows:
requires:
- helmLint
- buildCoreImage

- publishCoreImage:
context: dockerhub-bot
filters:
Expand All @@ -336,33 +305,6 @@ workflows:
only: staging
requires:
- integrationTests
- publishGatewayImage:
context: dockerhub-bot
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*/
requires:
- integrationTests
- publishTelemetryImage:
context: dockerhub-bot
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*/
requires:
- integrationTests
- publishWorkerImage:
context: dockerhub-bot
filters:
branches:
ignore: /.*/
tags:
only: /v[0-9]+(\.[0-9]+)*/
requires:
- integrationTests
- publishChart:
context: github-bot
filters:
Expand Down
2 changes: 1 addition & 1 deletion apps/1kv-backend-staging/templates/kusama-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ spec:
"skipUnclaimed": true,
"clientUpgrade": {
"skip": false,
"forcedVersion": "1.15.1"
"forcedVersion": "1.15.2"
},
"minSelfStake": 10000000000000,
"commission": 150000000,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ spec:
"skipUnclaimed": true,
"clientUpgrade": {
"skip": false,
"forcedVersion": "1.15.1"
"forcedVersion": "1.15.2"
},
"minSelfStake": 50000000000000,
"commission": 50000000,
Expand Down
2 changes: 1 addition & 1 deletion apps/1kv-backend/templates/kusama-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ spec:
"skipUnclaimed": true,
"clientUpgrade": {
"skip": false,
"forcedVersion": "1.15.1"
"forcedVersion": "1.15.2"
},
"minSelfStake": 10000000000000,
"commission": 150000000,
Expand Down
2 changes: 1 addition & 1 deletion apps/1kv-backend/templates/polkadot-otv-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ spec:
"skipUnclaimed": true,
"clientUpgrade": {
"skip": false,
"forcedVersion": "1.15.1"
"forcedVersion": "1.15.2"
},
"minSelfStake": 50000000000000,
"commission": 50000000,
Expand Down

0 comments on commit 7ac8d61

Please sign in to comment.