We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97db6bb commit 5bb9b52Copy full SHA for 5bb9b52
Jenkinsfile
@@ -54,6 +54,16 @@ pipeline {
54
// C_INCLUDE_PATH=/usr/include/librdkafka LIBRARY_PATH=/usr/include/librdkafka /tmp/.local/bin/pdm build
55
// """
56
sh 'pip install build'
57
+ sh '''
58
+ pip install toml
59
+ python -c "
60
+ import toml
61
+ data = toml.load('pyproject.toml')
62
+ data['project']['name'] = 'superclient-beta'
63
+ with open('pyproject.toml', 'w') as f:
64
+ toml.dump(data, f)
65
+ "
66
+ '''
67
sh 'python -m build'
68
sh 'ls dist/'
69
// withCredentials([usernamePassword(credentialsId: 'superstream-pypi', usernameVariable: 'USR', passwordVariable: 'PSW')]) {
0 commit comments