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...
This commit is contained in:
Sutou Kouhei 2025-08-29 17:45:26 +09:00 committed by GitHub
parent b37712b2d2
commit 5b2fbb028c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -87,10 +87,10 @@ jobs:
- name: "Python: Build: pkg-config" - name: "Python: Build: pkg-config"
run: | run: |
python3 -m pip install \ python3 -m pip install \
-Csetup-args=--build.pkg-config-path=$PWD/install/lib/pkgconfig \ -Csetup-args=--pkg-config-path=$PWD/install/lib/pkgconfig \
./python ./python
- name: "Python: Build: CMake" - name: "Python: Build: CMake"
run: | run: |
python3 -m pip install \ python3 -m pip install \
-Csetup-args=--build.cmake-prefix-path=$PWD/install \ -Csetup-args=--cmake-prefix-path=$PWD/install \
./python ./python