Check if python is installed
Some checks failed
Amarillo/amarillo-gitea/amarillo-core/pipeline/head There was a failure building this commit
Some checks failed
Amarillo/amarillo-gitea/amarillo-core/pipeline/head There was a failure building this commit
This commit is contained in:
parent
aaaae1a793
commit
d1b9cfdf43
11
Jenkinsfile
vendored
11
Jenkinsfile
vendored
|
|
@ -2,6 +2,17 @@ pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage('Check python version') {
|
||||||
|
steps {
|
||||||
|
sh 'python --version'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Run ls and pwd') {
|
||||||
|
steps {
|
||||||
|
sh 'pwd'
|
||||||
|
sh 'ls -l'
|
||||||
|
}
|
||||||
|
}
|
||||||
stage('Build') {
|
stage('Build') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Building'
|
echo 'Building'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue