test python script in jenkinsfile

This commit is contained in:
s407323 2019-04-26 13:16:15 +02:00
parent c68d6d9126
commit 8acd0079b0
2 changed files with 5 additions and 2 deletions

3
Jenkinsfile vendored
View File

@ -30,8 +30,7 @@ pipeline {
stage('Zadanie 3 - Metryki') {
steps {
sh 'gcc --version'
sh 'git --version'
sh 'python3 ./zadanie3/script.py'
}
}
}

4
zadanie3/script.py Normal file
View File

@ -0,0 +1,4 @@
#!/usr/bin/env python
# -*- coding: utf-8 -*-
print 'Hello, world!'