From 5b2fbb028ca1ab3809ffafb58ea07378253be5d1 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Fri, 29 Aug 2025 17:45:26 +0900 Subject: [PATCH] ci: fix openarm-can.pc/OpenArmCANConfig.cmake detection (#24) I think that we need `build.` because we need to set search path on build machine but `--build.{pkg-config-path,cmake-prefix-path}` don't work with Meson 1.9.0... --- .github/workflows/test.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index bf40299..d7d7b36 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -87,10 +87,10 @@ jobs: - name: "Python: Build: pkg-config" run: | python3 -m pip install \ - -Csetup-args=--build.pkg-config-path=$PWD/install/lib/pkgconfig \ + -Csetup-args=--pkg-config-path=$PWD/install/lib/pkgconfig \ ./python - name: "Python: Build: CMake" run: | python3 -m pip install \ - -Csetup-args=--build.cmake-prefix-path=$PWD/install \ + -Csetup-args=--cmake-prefix-path=$PWD/install \ ./python