mirror of
https://github.com/XRPLF/rippled.git
synced 2025-11-04 11:15:56 +00:00
88 lines
2.6 KiB
YAML
88 lines
2.6 KiB
YAML
name: Test rippled
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
verify_voidstar:
|
|
description: "Whether to verify the presence of voidstar instrumentation."
|
|
required: true
|
|
type: boolean
|
|
run_tests:
|
|
description: "Whether to run unit tests"
|
|
required: true
|
|
type: boolean
|
|
|
|
runs_on:
|
|
description: Runner to run the job on as a JSON string
|
|
required: true
|
|
type: string
|
|
image:
|
|
description: "The image to run in (leave empty to run natively)"
|
|
required: true
|
|
type: string
|
|
|
|
config_name:
|
|
description: "The name of the configuration."
|
|
required: true
|
|
type: string
|
|
|
|
jobs:
|
|
test:
|
|
name: Test ${{ inputs.config_name }}
|
|
runs-on: ${{ fromJSON(inputs.runs_on) }}
|
|
container: ${{ inputs.image != '' && inputs.image || null }}
|
|
timeout-minutes: 30
|
|
steps:
|
|
- name: Cleanup workspace
|
|
if: ${{ runner.os == 'macOS' }}
|
|
uses: XRPLF/actions/.github/actions/cleanup-workspace@3f044c7478548e3c32ff68980eeb36ece02b364e
|
|
|
|
- name: Download rippled artifact
|
|
uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # v4.3.0
|
|
with:
|
|
name: rippled-${{ inputs.config_name }}
|
|
|
|
- name: Make binary executable (Linux and macOS)
|
|
shell: bash
|
|
if: ${{ runner.os == 'Linux' || runner.os == 'macOS' }}
|
|
run: |
|
|
chmod +x ./rippled
|
|
|
|
- name: Check linking (Linux)
|
|
if: ${{ runner.os == 'Linux' }}
|
|
shell: bash
|
|
run: |
|
|
ldd ./rippled
|
|
if [ "$(ldd ./rippled | grep -E '(libstdc\+\+|libgcc)' | wc -l)" -eq 0 ]; then
|
|
echo 'The binary is statically linked.'
|
|
else
|
|
echo 'The binary is dynamically linked.'
|
|
exit 1
|
|
fi
|
|
|
|
- name: Verifying presence of instrumentation
|
|
if: ${{ inputs.verify_voidstar }}
|
|
shell: bash
|
|
run: |
|
|
./rippled --version | grep libvoidstar
|
|
|
|
- name: Run the embedded tests
|
|
if: ${{ inputs.run_tests }}
|
|
shell: bash
|
|
run: |
|
|
./rippled --unittest --unittest-jobs $(nproc)
|
|
|
|
- name: Run the separate tests
|
|
if: ${{ inputs.run_tests }}
|
|
shell: bash
|
|
run: |
|
|
for test_file in ./doctest/*; do
|
|
echo "Executing $test_file"
|
|
chmod +x "$test_file"
|
|
if [[ "${{ runner.os }}" == "Windows" && "$test_file" == "./doctest/xrpl.test.net.exe" ]]; then
|
|
echo "Skipping $test_file on Windows"
|
|
else
|
|
"$test_file"
|
|
fi
|
|
done
|