@@ -36,10 +36,9 @@ tasks:
3636 vars :
3737 FLAVOR : ' {{if eq .PGO "True"}}default{{else}}no-pgo{{end}}'
3838 cmds :
39- - python -m pip install --disable-pip-version-check -r native/hostlibs/requirements.txt
40- - conan export native/hostlibs
39+ - uv run conan export native/hostlibs
4140 - >-
42- conan install --requires="hostlibs/{{.HOSTLIBS_VERSION}}" --build=missing --no-remote --envs-generation=false
41+ uv run conan install --requires="hostlibs/{{.HOSTLIBS_VERSION}}" --build=missing --no-remote --envs-generation=false
4342 -pr:b=native/hostlibs/profiles/windows-{{.ARCH}}
4443 -pr:h=native/hostlibs/profiles/windows-{{.ARCH}}
4544 -o "hostlibs/*:pgo={{.PGO}}"
@@ -52,10 +51,9 @@ tasks:
5251 env :
5352 ROOTFS_DIR : ' {{.SYSROOT}}'
5453 cmds :
55- - python -m pip install --disable-pip-version-check -r native/hostlibs/requirements.txt
56- - conan export native/hostlibs
54+ - uv run conan export native/hostlibs
5755 - >-
58- conan install --requires="hostlibs/{{.HOSTLIBS_VERSION}}" --build=missing --no-remote --envs-generation=false
56+ uv run conan install --requires="hostlibs/{{.HOSTLIBS_VERSION}}" --build=missing --no-remote --envs-generation=false
5957 -pr:b=native/hostlibs/profiles/linux-x64
6058 -pr:h=native/hostlibs/profiles/linux-x64
6159 -c tools.system.package_manager:mode=install
@@ -80,10 +78,9 @@ tasks:
8078 internal : true
8179 platforms : [windows]
8280 cmds :
83- - python -m pip install --disable-pip-version-check -r native/skiasharp/requirements.txt
84- - conan export native/skiasharp
81+ - uv run conan export native/skiasharp
8582 - >-
86- conan install --requires="skiasharp/{{.SKIASHARP_VERSION}}" --build=missing --no-remote --envs-generation=false
83+ uv run conan install --requires="skiasharp/{{.SKIASHARP_VERSION}}" --build=missing --no-remote --envs-generation=false
8784 -pr:b=native/skiasharp/profiles/windows-{{.ARCH}}
8885 -pr:h=native/skiasharp/profiles/windows-{{.ARCH}}
8986 --deployer=native/skiasharp/deploy.py
@@ -95,10 +92,9 @@ tasks:
9592 env :
9693 ROOTFS_DIR : ' {{.SYSROOT}}'
9794 cmds :
98- - python -m pip install --disable-pip-version-check -r native/skiasharp/requirements.txt
99- - conan export native/skiasharp
95+ - uv run conan export native/skiasharp
10096 - >-
101- CC=clang CXX=clang++ conan install --requires="skiasharp/{{.SKIASHARP_VERSION}}" --build=missing --no-remote --envs-generation=false
97+ CC=clang CXX=clang++ uv run conan install --requires="skiasharp/{{.SKIASHARP_VERSION}}" --build=missing --no-remote --envs-generation=false
10298 -pr:b=native/skiasharp/profiles/linux-x64
10399 -pr:h=native/skiasharp/profiles/linux-x64
104100 -c tools.system.package_manager:mode=install
@@ -112,10 +108,9 @@ tasks:
112108 vars :
113109 ARCH : ' {{.ARCH | default "x64"}}'
114110 cmds :
115- - python -m pip install --disable-pip-version-check -r native/angle/requirements.txt
116- - conan export native/angle
111+ - uv run conan export native/angle
117112 - >-
118- conan install --requires="angle/{{.ANGLE_VERSION}}" --build=missing --no-remote --envs-generation=false
113+ uv run conan install --requires="angle/{{.ANGLE_VERSION}}" --build=missing --no-remote --envs-generation=false
119114 -pr:b=native/angle/profiles/windows-{{.ARCH}}
120115 -pr:h=native/angle/profiles/windows-{{.ARCH}}
121116 --deployer=native/angle/deploy.py
0 commit comments