mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-13 08:15:52 +00:00
feat: Build all possible conan configurations in CI (#2225)
This commit is contained in:
21
.github/workflows/upload_conan_deps.yml
vendored
21
.github/workflows/upload_conan_deps.yml
vendored
@@ -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'
|
||||||
|
|||||||
Reference in New Issue
Block a user