mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-18 10:45:51 +00:00
Merge right after: https://github.com/XRPLF/clio/pull/2178 Waits for: https://github.com/XRPLF/rippled/pull/5462
207 lines
6.8 KiB
YAML
207 lines
6.8 KiB
YAML
name: Reusable build
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
runs_on:
|
|
description: Runner to run the job on
|
|
required: true
|
|
type: string
|
|
|
|
container:
|
|
description: "The container object as a JSON string (leave empty to run natively)"
|
|
required: true
|
|
type: string
|
|
|
|
conan_profile:
|
|
description: Conan profile to use
|
|
required: true
|
|
type: string
|
|
|
|
build_type:
|
|
description: Build type
|
|
required: true
|
|
type: string
|
|
|
|
disable_cache:
|
|
description: Whether ccache and conan cache should be disabled
|
|
required: false
|
|
type: boolean
|
|
|
|
code_coverage:
|
|
description: Whether to enable code coverage
|
|
required: true
|
|
type: boolean
|
|
|
|
static:
|
|
description: Whether to build static binaries
|
|
required: true
|
|
type: boolean
|
|
|
|
upload_clio_server:
|
|
description: Whether to upload clio_server
|
|
required: true
|
|
type: boolean
|
|
|
|
targets:
|
|
description: Space-separated build target names
|
|
required: true
|
|
type: string
|
|
|
|
sanitizer:
|
|
description: Sanitizer to use
|
|
required: true
|
|
type: string
|
|
|
|
analyze_build_time:
|
|
description: Whether to enable build time analysis
|
|
required: true
|
|
type: boolean
|
|
|
|
secrets:
|
|
CODECOV_TOKEN:
|
|
required: false
|
|
|
|
jobs:
|
|
build:
|
|
name: Build ${{ inputs.container != '' && 'in container' || 'natively' }}
|
|
runs-on: ${{ inputs.runs_on }}
|
|
container: ${{ inputs.container != '' && fromJson(inputs.container) || null }}
|
|
|
|
steps:
|
|
- name: Clean workdir
|
|
if: ${{ runner.os == 'macOS' }}
|
|
uses: kuznetsss/workspace-cleanup@80b9863b45562c148927c3d53621ef354e5ae7ce # v1.0
|
|
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Prepare runner
|
|
uses: ./.github/actions/prepare_runner
|
|
with:
|
|
disable_ccache: ${{ inputs.disable_cache }}
|
|
|
|
- name: Setup conan
|
|
uses: ./.github/actions/setup_conan
|
|
with:
|
|
conan_profile: ${{ inputs.conan_profile }}
|
|
|
|
- name: Restore cache
|
|
if: ${{ !inputs.disable_cache }}
|
|
uses: ./.github/actions/restore_cache
|
|
id: restore_cache
|
|
with:
|
|
conan_dir: ${{ env.CONAN_HOME }}
|
|
conan_profile: ${{ inputs.conan_profile }}
|
|
ccache_dir: ${{ env.CCACHE_DIR }}
|
|
build_type: ${{ inputs.build_type }}
|
|
code_coverage: ${{ inputs.code_coverage }}
|
|
|
|
- name: Run conan and cmake
|
|
uses: ./.github/actions/generate
|
|
with:
|
|
conan_profile: ${{ inputs.conan_profile }}
|
|
conan_cache_hit: ${{ !inputs.disable_cache && steps.restore_cache.outputs.conan_cache_hit }}
|
|
build_type: ${{ inputs.build_type }}
|
|
code_coverage: ${{ inputs.code_coverage }}
|
|
static: ${{ inputs.static }}
|
|
sanitizer: ${{ inputs.sanitizer }}
|
|
time_trace: ${{ inputs.analyze_build_time }}
|
|
|
|
- name: Build Clio
|
|
uses: ./.github/actions/build_clio
|
|
with:
|
|
targets: ${{ inputs.targets }}
|
|
|
|
- name: Show build time analyze report
|
|
if: ${{ inputs.analyze_build_time }}
|
|
run: |
|
|
ClangBuildAnalyzer --all build/ build_time_report.bin
|
|
ClangBuildAnalyzer --analyze build_time_report.bin > build_time_report.txt
|
|
cat build_time_report.txt
|
|
shell: bash
|
|
|
|
- name: Upload build time analyze report
|
|
if: ${{ inputs.analyze_build_time }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: build_time_report_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }}
|
|
path: build_time_report.txt
|
|
|
|
- name: Show ccache's statistics
|
|
if: ${{ !inputs.disable_cache }}
|
|
shell: bash
|
|
id: ccache_stats
|
|
run: |
|
|
ccache -s > /tmp/ccache.stats
|
|
miss_rate=$(cat /tmp/ccache.stats | grep 'Misses' | head -n1 | sed 's/.*(\(.*\)%).*/\1/')
|
|
echo "miss_rate=${miss_rate}" >> $GITHUB_OUTPUT
|
|
cat /tmp/ccache.stats
|
|
|
|
- name: Strip unit_tests
|
|
if: inputs.sanitizer == 'false' && !inputs.code_coverage && !inputs.analyze_build_time
|
|
run: strip build/clio_tests
|
|
|
|
- name: Strip integration_tests
|
|
if: inputs.sanitizer == 'false' && !inputs.code_coverage && !inputs.analyze_build_time
|
|
run: strip build/clio_integration_tests
|
|
|
|
- name: Upload clio_server
|
|
if: inputs.upload_clio_server && !inputs.code_coverage && !inputs.analyze_build_time
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: clio_server_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }}
|
|
path: build/clio_server
|
|
|
|
- name: Upload clio_tests
|
|
if: ${{ !inputs.code_coverage && !inputs.analyze_build_time }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: clio_tests_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }}
|
|
path: build/clio_tests
|
|
|
|
- name: Upload clio_integration_tests
|
|
if: ${{ !inputs.code_coverage && !inputs.analyze_build_time }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: clio_integration_tests_${{ runner.os }}_${{ inputs.build_type }}_${{ inputs.conan_profile }}
|
|
path: build/clio_integration_tests
|
|
|
|
- name: Save cache
|
|
if: ${{ !inputs.disable_cache && github.ref == 'refs/heads/develop' }}
|
|
uses: ./.github/actions/save_cache
|
|
with:
|
|
conan_dir: ${{ env.CONAN_HOME }}
|
|
conan_hash: ${{ steps.restore_cache.outputs.conan_hash }}
|
|
conan_cache_hit: ${{ steps.restore_cache.outputs.conan_cache_hit }}
|
|
ccache_dir: ${{ env.CCACHE_DIR }}
|
|
ccache_cache_hit: ${{ steps.restore_cache.outputs.ccache_cache_hit }}
|
|
ccache_cache_miss_rate: ${{ steps.ccache_stats.outputs.miss_rate }}
|
|
build_type: ${{ inputs.build_type }}
|
|
code_coverage: ${{ inputs.code_coverage }}
|
|
conan_profile: ${{ inputs.conan_profile }}
|
|
|
|
# This is run as part of the build job, because it requires the following:
|
|
# - source code
|
|
# - generated source code (Build.cpp)
|
|
# - conan packages
|
|
# - .gcno files in build directory
|
|
#
|
|
# It's all available in the build job, but not in the test job
|
|
- name: Run code coverage
|
|
if: ${{ inputs.code_coverage }}
|
|
uses: ./.github/actions/code_coverage
|
|
|
|
# `codecov/codecov-action` will rerun `gcov` if it's available and build directory is present
|
|
# To prevent this from happening, we run this action in a separate workflow
|
|
#
|
|
# More info: https://github.com/XRPLF/clio/pull/2066
|
|
upload_coverage_report:
|
|
if: ${{ inputs.code_coverage }}
|
|
name: Codecov
|
|
needs: build
|
|
uses: ./.github/workflows/upload_coverage_report.yml
|
|
secrets:
|
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|