1. 16 May, 2024 1 commit
  2. 14 May, 2024 2 commits
  3. 13 May, 2024 3 commits
  4. 12 May, 2024 2 commits
    • pk910's avatar
      fix: use `electra-support` image for assertoor when electra fork epoch is set (#607) · cdeab939
      pk910 authored
      * use `electra-support` image for assertoor when electra fork epoch is
      set
      * use `peerdas-support` image for assertoor when peer das fork epoch is
      set
      * use `latest` image for minimal preset (now naively supported)
      
      ---------
      Co-authored-by: default avatarBarnabas Busa <busa.barnabas@gmail.com>
      cdeab939
    • Sam Calder-Mason's avatar
      feat(apache): Serve all config files (#606) · 3f1f5e11
      Sam Calder-Mason authored
      Serves all network config files via apache under the `/network-configs/
      path.
      
      ```
      /network-configs/besu.json
      /network-configs/boot/
      /network-configs/boot_enr.txt
      /network-configs/boot_enr.yaml
      /network-configs/bootnode.txt
      /network-configs/bootstrap_nodes.txt
      /network-configs/chainspec.json
      /network-configs/config.yaml
      /network-configs/deploy_block.txt
      /network-configs/deposit_contract.txt
      /network-configs/deposit_contract_block.txt
      /network-configs/deposit_contract_block_hash.txt
      /network-configs/genesis.json
      /network-configs/genesis.ssz
      /network-configs/genesis_validators_root.txt
      /network-configs/mnemonics.yaml
      /network-configs/parsedBeaconState.json
      /network-configs/tranches/
      ```
      3f1f5e11
  5. 09 May, 2024 1 commit
  6. 08 May, 2024 6 commits
  7. 07 May, 2024 1 commit
  8. 06 May, 2024 6 commits
  9. 01 May, 2024 2 commits
  10. 30 Apr, 2024 1 commit
  11. 26 Apr, 2024 4 commits
  12. 23 Apr, 2024 1 commit
  13. 19 Apr, 2024 3 commits
  14. 17 Apr, 2024 3 commits
  15. 16 Apr, 2024 1 commit
  16. 15 Apr, 2024 3 commits
    • Barnabas Busa's avatar
      b7592eca
    • Léo Vincent's avatar
      chore: add human friendly descriptions to `exec`, `run_sh` and `run_python` instructions (#561) · ea4cd083
      Léo Vincent authored
      Add human friendly descriptions when executing commands or running
      scripts.
      
      Here is an example:
      
      Without descriptions.
      
      ```bash
      Executing command on service 'validator-key-generation-cl-validator-keystore'
      Command returned with exit code '0' with no output
      
      Verifying whether two values meet a certain condition '=='
      Verification succeeded. Value is '0'.
      
      Storing files from service 'validator-key-generation-cl-validator-keystore' at path '/node-0-keystores' to files artifact with name '1-lighthouse-geth-0-63'
      Files with artifact name '1-lighthouse-geth-0-63' uploaded with artifact UUID 'd42fe1052c85433580a752bf818a54f1'
      
      Executing command on service 'validator-key-generation-cl-validator-keystore'
      Command returned with exit code '0' with no output
      ```
      
      With descriptions.
      
      ```bash
      Generating keystores
      Command returned with exit code '0' with no output
      
      Verifying whether two values meet a certain condition '=='
      Verification succeeded. Value is '0'.
      
      Storing files from service 'validator-key-generation-cl-validator-keystore' at path '/node-0-keystores' to files artifact with name '1-lighthouse-geth-0-63'
      Files with artifact name '1-lighthouse-geth-0-63' uploaded with artifact UUID '51cfc3d4fd01469ca5512628098ab87f'
      
      Storing prysm password in a file
      Command returned with exit code '0' with no output
      ```
      Co-authored-by: default avatarBarnabas Busa <busa.barnabas@gmail.com>
      ea4cd083
    • Barnabas Busa's avatar