From 36ed9609264d483404f843660307cc8f30cbdbef Mon Sep 17 00:00:00 2001 From: Leonardo Parente <23251360+leoparente@users.noreply.github.com> Date: Thu, 9 Jan 2025 18:15:58 -0300 Subject: [PATCH] Fix cross --- .github/workflows/build_cross.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_cross.yml b/.github/workflows/build_cross.yml index f57afe68f..c9ed6fe59 100644 --- a/.github/workflows/build_cross.yml +++ b/.github/workflows/build_cross.yml @@ -88,6 +88,7 @@ jobs: - name: Create Conan configuration working-directory: ${{github.workspace}}/src run: | + mkdir build/ conan config list python3 -c 'import yaml; p = "build/settings.yml"; d = yaml.safe_load(open(p)); d["compiler"]["gcc"]["libc"] = ["glibc", "musl"]; yaml.safe_dump(d, open(p, "w"))' conan profile detect @@ -131,7 +132,7 @@ jobs: - name: Build working-directory: ${{github.workspace}}/src/build - run: cmake --build . --config Release -- -j 4 + run: make -j4 VERBOSE=1 - name: Print sccache stats run: |