We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ef42bad commit 63b9752Copy full SHA for 63b9752
Jenkinsfile
@@ -4,9 +4,14 @@ pipeline {
4
stage('Deploy to Demo') {
5
steps {
6
echo 'Building application tarballs.'
7
- sh 'echo \'Running in a shell script\''
8
- sh '''echo "Another shell script?"
9
-'''
+ sh '''tar czf CloudSession-Pkg-${BUILD_NUMBER}.tar.gz config.py Failures.py
+ FakeSecHead.py
+ run.py
10
+ Validation.py
11
+ app database'''
12
+ sh 'tar czf CloudSession-Templates-${BUILD_NUMBER}.tar.gz templates'
13
+ sh 'cp CloudSession-Pkg-${BUILD_NUMBER}.tar.gz CloudSession-Pkg-LATEST.tar.gz'
14
+ sh 'cp CloudSession-Templates-${BUILD_NUMBER}.tar.gz CloudSession-Templates-LATEST.tar.gz '
15
}
16
17
0 commit comments