Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
leoparente committed Jan 10, 2025
1 parent 609f2e5 commit 9e1dd63
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_cross.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ jobs:
- name: Create Conan host profile
working-directory: ${{github.workspace}}/src
run: |
cat > "${{github.workspace}}/host" << "EOF"
cat > "$(conan config home)/profiles/host" << "EOF"
[settings]
os=Linux
arch=${{matrix.conan_arch}}
Expand All @@ -116,7 +117,7 @@ jobs:
- name: Install dependencies
working-directory: ${{github.workspace}}/src
run: |
conan install -pr:b=default -pr:h="${{github.workspace}}/host" --build=missing
conan install . -pr:b=default -pr:h="host" --build=missing
- name: Configure
working-directory: ${{github.workspace}}/src/build
Expand Down
4 changes: 2 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ def requirements(self):
self.requires("robin-hood-hashing/3.11.5")
self.requires("libcurl/8.11.1")
if (
"libc" in self.settings.compiler.fields
and self.settings.compiler.libc != "musl"
"libc" not in self.settings.compiler.fields
or self.settings.compiler.libc != "musl"
):
self.requires("sentry-crashpad/0.6.5")

Expand Down

0 comments on commit 9e1dd63

Please sign in to comment.