-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathJenkinsfile
61 lines (53 loc) · 1.23 KB
/
Jenkinsfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Build'
sh '''if [ ! -e "${JENKINS_HOME}/composer.phar" ]; then
wget https://getcomposer.org/composer-stable.phar -O "${JENKINS_HOME}/composer.phar"
else
echo "Reusing composer from [${JENKINS_HOME}]";
fi
php "${JENKINS_HOME}/composer.phar" install
'''
}
}
stage('Test') {
parallel {
stage('PHP Unit Test') {
post {
always {
echo 'Here we analyze the output from PHP unit.'
}
}
steps {
sh 'php ${WORKSPACE}/vendor/bin/phpunit --log-junit ${WORKSPACE}/results.xml ${WORKSPACE}/test'
}
}
stage('PHP Fuzzing') {
when {
branch 'master'
}
steps {
echo 'Fuzzing'
}
}
stage('Integration') {
steps {
echo 'Integration'
}
}
}
}
stage('Deploy') {
steps {
echo 'Deploy to staging'
}
}
}
parameters {
string(name: 'zskey', defaultValue: '', description: 'Zend Server API Key')
password(name: 'zssecret', defaultValue: '', description: 'Zend Server API Secret')
}
}