Jenkinsfile
This commit is contained in:
parent
f3cd6eae87
commit
2481268b00
9
Jenkinsfile
vendored
9
Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
docker { image 'ubuntu:latest' }
|
||||
}
|
||||
|
||||
parameters {
|
||||
string(
|
||||
@ -29,6 +31,11 @@ pipeline {
|
||||
}
|
||||
|
||||
stages {
|
||||
stage('Test') {
|
||||
steps {
|
||||
sh 'cat /etc/issue'
|
||||
}
|
||||
}
|
||||
stage('First') {
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}","KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
||||
|
Loading…
Reference in New Issue
Block a user