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 50f758a commit 1564a0fCopy full SHA for 1564a0f
1 file changed
Jenkinsfile
@@ -68,11 +68,12 @@ pipeline {
68
sh '.jenkins/scripts/setup_agent.sh'
69
echo "Create a shared Python 3.12 env & build+install DRAGONS"
70
sh '''
71
- echo "[$PATH]"
72
- which tox
73
- which flock
74
- { flock --exclusive --timeout 900 /tmp/jenkins_conda.lock -c "echo success"; } 2>&1
75
- echo "got here"
+ LOCK_FILE="/tmp/jenkins_conda.lock"
+ echo "before"
+ (
+ echo "subshell"
+ )>"$LOCK_FILE"
76
+ echo "after"
77
'''
78
}
79
post {
0 commit comments