Commit 144d22e
committed
Add dedicated PATH fix step after Conan installation
The get-conan action installs conan to ~/.local/bin via pip, but on
CentOS 7 containers there's also a system conan at /usr/bin/conan (v1.47).
Previously, the turtlebrowser/get-conan action would add its own path
to GITHUB_PATH, but the order wasn't guaranteed. This caused vfx2022
builds to find the old system conan instead of the newly-installed one.
By explicitly adding $HOME/.local/bin to GITHUB_PATH after both uv and
conan installation, we ensure that:
- uv-installed Python 3.11 is found before system Python 3.7
- pip-installed Conan 2.x is found before system Conan 1.47
Signed-off-by: Gary Oberbrunner <[email protected]>1 parent f640623 commit 144d22e
1 file changed
+6
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
209 | 209 | | |
210 | 210 | | |
211 | 211 | | |
212 | | - | |
213 | | - | |
214 | | - | |
215 | 212 | | |
216 | 213 | | |
217 | 214 | | |
| |||
226 | 223 | | |
227 | 224 | | |
228 | 225 | | |
| 226 | + | |
| 227 | + | |
| 228 | + | |
| 229 | + | |
| 230 | + | |
| 231 | + | |
229 | 232 | | |
230 | 233 | | |
231 | 234 | | |
| |||
0 commit comments