Skip to content

Commit 48c37f9

Browse files
committed
Setup conan default profile
1 parent 1e03598 commit 48c37f9

File tree

2 files changed

+7
-3
lines changed

2 files changed

+7
-3
lines changed

.github/workflows/build-dispatch.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ on:
1414
clang-version:
1515
description: "Clang tools version to be installed"
1616
required: false
17-
type: number
17+
type: string
1818

1919
jobs:
2020
build:
@@ -38,6 +38,10 @@ jobs:
3838
conan-cache: true
3939
conan-cache-version: 'v1'
4040
conan-config-url: https://github.com/iceshard-engine/conan-config.git
41+
conan-profile-compiler: 'clang'
42+
conan-profile-compiler-version: '${{ inputs.clang-version }}'
43+
conan-profile-cppstd: '20'
44+
conan-profile-libcxx: 'libc++'
4145

4246
- name: Setup IBT
4347
uses: iceshard-engine/.github/.github/actions/ibt-wks@main

.github/workflows/build-validate-code.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ jobs:
2323
pipeline: 'x64'
2424
- host: ubuntu-latest
2525
pipeline: 'x64-Clang'
26-
clang-version: 20
26+
clang-version: '20'
2727
with:
2828
host-platform: ${{ matrix.host }}
2929
target: "${{ matrix.project }}-${{ matrix.pipeline }}-${{ matrix.config }}"
30-
clang-version: ${{ matrix.clang-version || 0 }}
30+
clang-version: ${{ matrix.clang-version || '' }}

0 commit comments

Comments
 (0)