Merge remote-tracking branch 'origin/dev' into feature-export-rng

This commit is contained in:
Nicholas Dudfield
2026-04-30 10:55:13 +07:00
4 changed files with 34 additions and 1 deletions

View File

@@ -464,3 +464,16 @@ jobs:
verbose: true
plugins: noop
use_oidc: true
- name: Export server definitions
if: matrix.job_type == 'build' && matrix.compiler_id == 'gcc-13-libstdcxx'
run: |
${{ env.build_dir }}/rippled --definitions | python3 -m json.tool > server_definitions.json
- name: Upload server definitions
if: matrix.job_type == 'build' && matrix.compiler_id == 'gcc-13-libstdcxx'
uses: actions/upload-artifact@v7
with:
name: server-definitions
path: server_definitions.json
archive: false