update
This commit is contained in:
parent
a5150cac16
commit
20a95ff5e0
1 changed files with 7 additions and 0 deletions
7
Jenkinsfile
vendored
7
Jenkinsfile
vendored
|
|
@ -2,6 +2,13 @@ pipeline {
|
||||||
agent any
|
agent any
|
||||||
|
|
||||||
stages {
|
stages {
|
||||||
|
stage('Install Python') {
|
||||||
|
steps {
|
||||||
|
echo 'Installing Python...'
|
||||||
|
sh 'sudo apt-get update && sudo apt-get install -y python3 python3-pip'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
stage('Test') {
|
stage('Test') {
|
||||||
steps {
|
steps {
|
||||||
echo 'Running tests...'
|
echo 'Running tests...'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue