-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJenkinsfile
More file actions
21 lines (19 loc) · 734 Bytes
/
Jenkinsfile
File metadata and controls
21 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
pipeline {
// Assumed that
// - this pipeline will use Docker on Windows so agent must support Windows containers
// - latest changes are fetched already by Jenkins pipeline plugin along with that file
// - clean-up is done on fetch by Jenkins pipeline so no old files kept
agent any
parameters {
string(name: 'CLIENT_DIR', defaultValue: 'webrtc-proxy', description: 'Directory containing sources and build scripts for WebRTC client')
string(name: 'MYDIR', defaultValue: 'mydir', description: 'Directory containing sources and build scripts for WebRTC client')
}
stages {
stage('Build') {
steps {
echo "${params.CLIENT_DIR}"
echo "${params.MYDIR}"
}
}
}
}