fix: Static linkage (#1551)

Fixes #1507
This commit is contained in:
Alex Kremer
2024-07-23 17:35:39 +01:00
committed by GitHub
parent 648cedcba5
commit 77494245a9
3 changed files with 14 additions and 12 deletions

View File

@@ -17,12 +17,15 @@ jobs:
include:
- os: macos14
build_type: Release
static: false
- os: heavy
build_type: Release
static: true
container:
image: rippleci/clio_ci:latest
- os: heavy
build_type: Debug
static: true
container:
image: rippleci/clio_ci:latest
runs-on: [self-hosted, "${{ matrix.os }}"]
@@ -54,6 +57,7 @@ jobs:
conan_profile: ${{ steps.conan.outputs.conan_profile }}
conan_cache_hit: ${{ steps.restore_cache.outputs.conan_cache_hit }}
build_type: ${{ matrix.build_type }}
static: ${{ matrix.static }}
- name: Build Clio
uses: ./.github/actions/build_clio