19 lines
404 B
Groovy
19 lines
404 B
Groovy
pipeline {
|
|
agent any
|
|
|
|
stages {
|
|
stage('Install Python') {
|
|
steps {
|
|
echo 'Installing Python...'
|
|
sh 'sudo apt-get update && sudo apt-get install -y python3 python3-pip'
|
|
}
|
|
}
|
|
|
|
stage('Test') {
|
|
steps {
|
|
echo 'Running tests...'
|
|
sh 'python ./test.py'
|
|
}
|
|
}
|
|
}
|
|
}
|