Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7793ee commit c6ea315Copy full SHA for c6ea315
1 file changed
Jenkinsfile
@@ -8,6 +8,11 @@ pipeline {
8
PROXY_TEST_USERNAME = credentials('proxy-test-username')
9
PROXY_TEST_PASSWORD = credentials('proxy-test-password')
10
}
11
+
12
+ options {
13
+ disableConcurrentBuilds()
14
+ }
15
16
stages {
17
stage('Unit Test') {
18
steps {
@@ -27,6 +32,7 @@ if [ "${t%.*}" -lt 80 ]; then
27
32
fi'''
28
33
29
34
35
30
36
stage('Main Race Condition') {
31
37
38
sh 'go run --race main.go -t https://proxytest.ddosifytech.com/ -d 1 -n 1500 -a ${PROXY_TEST_USERNAME}:${PROXY_TEST_PASSWORD} -p https'
0 commit comments