Skip to content

Commit 9f413f5

Browse files
committed
update ci
1 parent e0388ac commit 9f413f5

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.ci/Jenkinsfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ def envCreate(Map ctxt) {
2828
if (ctxt.isInsideDocker) {
2929
// Alternate implementation because of https://issues.jenkins.io/browse/JENKINS-49076
3030
// Always install latest pre-release
31-
ctxt.shFunction("${binPath}python -m pip install --upgrade pip")
32-
ctxt.shFunction("${binPath}python -m pip uninstall -y conan")
33-
ctxt.shFunction("${binPath}python -m pip install ${ctxt.branch.branchInstall} --upgrade")
34-
ctxt.shFunction("${binPath}python -m pip install meson")
31+
ctxt.shFunction("pip install --upgrade pip")
32+
ctxt.shFunction("pip uninstall -y conan")
33+
ctxt.shFunction("pip install ${ctxt.branch.branchInstall} --upgrade")
34+
ctxt.shFunction("pip install meson")
3535
}
3636
else {
3737
ctxt.shFunction("${ctxt.python_host} -m venv $venvDirectory")

0 commit comments

Comments
 (0)