Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: json to yaml everything #332

Merged
merged 10 commits into from Oct 25, 2023
Merged
Show file tree
Hide file tree
Changes from 9 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
46 changes: 23 additions & 23 deletions .circleci/config.yml
Expand Up @@ -117,15 +117,15 @@ jobs:
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/besu-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/besu-all.yaml)"

erigon-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/erigon-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/erigon-all.yaml)"

ethereumjs-all:
executor: ubuntu_vm
Expand All @@ -134,150 +134,150 @@ jobs:
- <<: *setup_kurtosis
- checkout

- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/ethereumjs-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/ethereumjs-all.yaml)"

geth-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/geth-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/geth-all.yaml)"

lighthouse-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/lighthouse-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/lighthouse-all.yaml)"

lodestar-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/lodestar-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/lodestar-all.yaml)"

mix:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix.yaml)"

nethermind-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nethermind-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nethermind-all.yaml)"

nimbus-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nimbus-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nimbus-all.yaml)"

prysm-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/prysm-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/prysm-all.yaml)"

reth-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/reth-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/reth-all.yaml)"

teku-all:
executor: ubuntu_vm
resource_class: xlarge
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/teku-all.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/teku-all.yaml)"

mev:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.yaml)"

mev_mock:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev-mock.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev-mock.yaml)"

mev_k8s:
executor: ubuntu_vm
steps:
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mev.yaml)"

nimbus_mev:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nimbus-mev.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/nimbus-mev.yaml)"

mix_with_tools_k8s:
executor: ubuntu_vm
steps:
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix-with-tools.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix-with-tools.yaml)"

mix_with_tools_docker:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix-with-tools.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/mix-with-tools.yaml)"

parallel_key_store_generation_1:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-1.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-1.yaml)"
parallel_key_store_generation_2:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-2.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-2.yaml)"
parallel_key_store_generation_3:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-3.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/parallel-keystores-3.yaml)"
disable_peer_scoring:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/disable-peer-scoring.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/disable-peer-scoring.yaml)"
petra:
executor: ubuntu_vm
steps:
- <<: *setup_kurtosis
- checkout
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/petra.json)"
- run: kurtosis run ${PWD} "$(cat ./.circleci/tests/petra.yaml)"

workflows:
nightly_tests:
Expand Down
29 changes: 0 additions & 29 deletions .circleci/tests/besu-all.json

This file was deleted.

14 changes: 14 additions & 0 deletions .circleci/tests/besu-all.yaml
@@ -0,0 +1,14 @@
participants:
- el_client_type: geth
cl_client_type: teku
- el_client_type: geth
cl_client_type: teku
- el_client_type: besu
cl_client_type: prysm
- el_client_type: besu
cl_client_type: nimbus
- el_client_type: besu
cl_client_type: lighthouse
- el_client_type: besu
cl_client_type: lodestar
additional_services: []
30 changes: 0 additions & 30 deletions .circleci/tests/disable-peer-scoring.json

This file was deleted.

15 changes: 15 additions & 0 deletions .circleci/tests/disable-peer-scoring.yaml
@@ -0,0 +1,15 @@
participants:
- el_client_type: geth
cl_client_type: teku
- el_client_type: besu
cl_client_type: lighthouse
- el_client_type: reth
cl_client_type: lodestar
- el_client_type: erigon
cl_client_type: nimbus
- el_client_type: nethermind
cl_client_type: prysm
- el_client_type: ethereumjs
cl_client_type: teku
additional_services: []
disable_peer_scoring: true
25 changes: 0 additions & 25 deletions .circleci/tests/erigon-all.json

This file was deleted.

12 changes: 12 additions & 0 deletions .circleci/tests/erigon-all.yaml
@@ -0,0 +1,12 @@
participants:
- el_client_type: erigon
cl_client_type: teku
- el_client_type: erigon
cl_client_type: prysm
- el_client_type: erigon
cl_client_type: nimbus
- el_client_type: erigon
cl_client_type: lighthouse
- el_client_type: erigon
cl_client_type: lodestar
additional_services: []
25 changes: 0 additions & 25 deletions .circleci/tests/ethereumjs-all.json

This file was deleted.

12 changes: 12 additions & 0 deletions .circleci/tests/ethereumjs-all.yaml
@@ -0,0 +1,12 @@
participants:
- el_client_type: ethereumjs
cl_client_type: teku
- el_client_type: ethereumjs
cl_client_type: prysm
- el_client_type: ethereumjs
cl_client_type: nimbus
- el_client_type: ethereumjs
cl_client_type: lighthouse
- el_client_type: ethereumjs
cl_client_type: lodestar
additional_services: []
25 changes: 0 additions & 25 deletions .circleci/tests/geth-all.json

This file was deleted.

12 changes: 12 additions & 0 deletions .circleci/tests/geth-all.yaml
@@ -0,0 +1,12 @@
participants:
- el_client_type: geth
cl_client_type: teku
- el_client_type: geth
cl_client_type: prysm
- el_client_type: geth
cl_client_type: nimbus
- el_client_type: geth
cl_client_type: lighthouse
- el_client_type: geth
cl_client_type: lodestar
additional_services: []