Skip to content

Commit

Permalink
Fix Jenkins file
Browse files Browse the repository at this point in the history
  • Loading branch information
iffiX committed Jun 23, 2021
1 parent a63302f commit faf7c72
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Jenkinsfile
Expand Up @@ -10,8 +10,8 @@ pipeline {
}
environment {
PYPI_CREDS = credentials('pypi_username_password')
TWINE_USERNAME = '${env.PYPI_CREDS_USR}'
TWINE_PASSWORD = '${env.PYPI_CREDS_PSW}'
TWINE_USERNAME = "${env.PYPI_CREDS_USR}"
TWINE_PASSWORD = "${env.PYPI_CREDS_PSW}"
// See https://github.com/pytorch/pytorch/issues/37377
MKL_SERVICE_FORCE_INTEL = "1"
}
Expand Down

0 comments on commit faf7c72

Please sign in to comment.