fix: Use new CI image with global.conf for sanitizers to affect packa… (#2234)

This commit is contained in:
Ayaz Salikhov
2025-06-17 19:26:25 +01:00
committed by GitHub
parent 67b27ee344
commit f20efae75a
7 changed files with 46 additions and 35 deletions

View File

@@ -78,9 +78,11 @@ jobs:
disable_ccache: ${{ inputs.disable_cache }}
- name: Setup conan
uses: ./.github/actions/setup_conan
if: runner.os == 'macOS'
uses: ./.github/actions/setup_conan_macos
with:
conan_profile: ${{ inputs.conan_profile }}
global_conf_file: docker/ci/conan/global.conf
- name: Restore cache
if: ${{ !inputs.disable_cache }}

View File

@@ -34,11 +34,6 @@ jobs:
with:
disable_ccache: true
- name: Setup conan
uses: ./.github/actions/setup_conan
with:
conan_profile: ${{ env.CONAN_PROFILE }}
- name: Run conan and cmake
uses: ./.github/actions/generate
with:

View File

@@ -40,11 +40,6 @@ jobs:
with:
disable_ccache: true
- name: Setup conan
uses: ./.github/actions/setup_conan
with:
conan_profile: ${{ env.CONAN_PROFILE }}
- name: Restore cache
uses: ./.github/actions/restore_cache
id: restore_cache

View File

@@ -67,9 +67,11 @@ jobs:
disable_ccache: true
- name: Setup conan
uses: ./.github/actions/setup_conan
if: runner.os == 'macOS'
uses: ./.github/actions/setup_conan_macos
with:
conan_profile: ${{ env.CONAN_PROFILE }}
global_conf_file: docker/ci/conan/global.conf
- name: Show conan profile
run: conan profile show --profile:all ${{ env.CONAN_PROFILE }}