Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion template/2026.6.6.1502/ansible/cmn/update_firedancer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
dest: /home/solv/firedancer
update: yes
force: yes
version: v{{ mainnet_validators.version_firedancer }}
version: "v{{ vars[group_names | difference(['all', 'ungrouped']) | first].version_firedancer | default(mainnet_validators.version_firedancer) }}"

- name: Initialize git submodules
command: git submodule update --init --recursive
Expand Down Expand Up @@ -51,6 +51,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
9 changes: 9 additions & 0 deletions template/2026.6.6.1502/ansible/devnet-rpc/install_jito.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@
version: '{{ jito_version_resolved }}'
force: yes

- name: Remove stale cargo-build-sbf/cargo-test-sbf (avoid cargo-install conflict)
become: no
file:
path: '{{ jito_install_dir }}/bin/{{ item }}'
state: absent
loop:
- cargo-build-sbf
- cargo-test-sbf

- name: Build Jito Solana (cargo-install-all)
become: no
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
9 changes: 9 additions & 0 deletions template/2026.6.6.1502/ansible/mainnet-rpc/install_jito.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@
version: '{{ jito_version_resolved }}'
force: yes

- name: Remove stale cargo-build-sbf/cargo-test-sbf (avoid cargo-install conflict)
become: no
file:
path: '{{ jito_install_dir }}/bin/{{ item }}'
state: absent
loop:
- cargo-build-sbf
- cargo-test-sbf

- name: Build Jito Solana (cargo-install-all)
become: no
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
dest: /home/solv/firedancer
update: yes
force: yes
version: v{{ mainnet_validators.version_firedancer }}
version: v{{ mainnet_rpcs.version_firedancer }}

- name: Initialize git submodules
command: git submodule update --init --recursive
Expand Down Expand Up @@ -53,6 +53,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@
version: '{{ jito_version }}'
force: yes

- name: Remove stale cargo-build-sbf/cargo-test-sbf (avoid cargo-install conflict)
become: no
file:
path: '{{ jito_install_dir }}/bin/{{ item }}'
state: absent
loop:
- cargo-build-sbf
- cargo-test-sbf

- name: Build Jito Solana (cargo-install-all)
become: no
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
9 changes: 9 additions & 0 deletions template/2026.6.6.1502/ansible/testnet-rpc/install_jito.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,15 @@
version: '{{ jito_version_resolved }}'
force: yes

- name: Remove stale cargo-build-sbf/cargo-test-sbf (avoid cargo-install conflict)
become: no
file:
path: '{{ jito_install_dir }}/bin/{{ item }}'
state: absent
loop:
- cargo-build-sbf
- cargo-test-sbf

- name: Build Jito Solana (cargo-install-all)
become: no
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
dest: /home/solv/firedancer
update: yes
force: yes
version: v{{ mainnet_validators.version_firedancer }}
version: v{{ testnet_rpcs.version_firedancer }}

- name: Initialize git submodules
command: git submodule update --init --recursive
Expand Down Expand Up @@ -51,6 +51,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,15 @@
version: '{{ jito_version }}'
force: yes

- name: Remove stale cargo-build-sbf/cargo-test-sbf (avoid cargo-install conflict)
become: no
file:
path: '{{ jito_install_dir }}/bin/{{ item }}'
state: absent
loop:
- cargo-build-sbf
- cargo-test-sbf

- name: Build Jito Solana (cargo-install-all)
become: no
shell: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
dest: /home/solv/firedancer
update: yes
force: yes
version: v{{ mainnet_validators.version_firedancer }}
version: v{{ testnet_validators.version_firedancer }}

- name: Initialize git submodules
command: git submodule update --init --recursive
Expand Down Expand Up @@ -51,6 +51,7 @@
src: /home/solv/firedancer/build/native/gcc/bin/fdctl
dest: /usr/local/bin/fdctl
state: link
force: yes
become: yes
become_user: root

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,9 +50,11 @@ exec agave-validator \
--rpc-send-transaction-also-leader \
{% endif %}
{% endif %}
--no-port-check{% if rpc_type == 'Geyser gRPC' or rpc_type == 'Index RPC + gRPC' %} \
--no-port-check \
{% if rpc_type == 'Geyser gRPC' or rpc_type == 'Index RPC + gRPC' %}
--rpc-pubsub-enable-block-subscription \
--rpc-pubsub-enable-vote-subscription \
{% endif %}{% if validator_type == 'jito' %}
--shred-receiver-address {{ shred_receiver_address | default("64.130.35.224:1002") }}
{% endif %}
{% if validator_type == 'jito' %}
--shred-receiver-address {{ shred_receiver_address | default("64.130.35.224:1002") }} \
{% endif %}
Loading