feat: Build all possible conan configurations in CI (#2225)

This commit is contained in:
Ayaz Salikhov
2025-06-13 16:53:04 +01:00
committed by GitHub
parent 59bb9a11ab
commit 7fcabd1ce7

View File

@@ -26,17 +26,24 @@ jobs:
strategy: strategy:
fail-fast: false fail-fast: false
matrix: matrix:
os: [heavy] os: [heavy, heavy-arm64]
container: ['{ "image": "ghcr.io/xrplf/clio-ci:latest" }'] container: ['{ "image": "ghcr.io/xrplf/clio-ci:latest" }']
compiler: ["gcc", "clang"] compiler: ["gcc", "clang"]
sanitizer_ext: [".asan", ".tsan", ".ubsan"] sanitizer_ext: [".asan", ".tsan", ".ubsan", ""]
build_type: ["Release"] build_type: ["Release", "Debug"]
include: # libbacktrace doesn't build on arm64 with gcc.tsan
- os: heavy exclude:
- os: heavy-arm64
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }' container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
compiler: gcc compiler: gcc
sanitizer_ext: "" sanitizer_ext: .tsan
build_type: Release
- os: heavy-arm64
container: '{ "image": "ghcr.io/xrplf/clio-ci:latest" }'
compiler: gcc
sanitizer_ext: .tsan
build_type: Debug build_type: Debug
include:
- os: macos15 - os: macos15
container: "" container: ""
compiler: default_apple_clang compiler: default_apple_clang
@@ -70,7 +77,7 @@ jobs:
with: with:
conan_profile: ${{ env.CONAN_PROFILE }} conan_profile: ${{ env.CONAN_PROFILE }}
conan_cache_hit: "false" conan_cache_hit: "false"
build_type: Release build_type: ${{ matrix.build_type }}
- name: Login to Conan - name: Login to Conan
if: github.event_name != 'pull_request' if: github.event_name != 'pull_request'