test whats up
This commit is contained in:
parent
42143e6f50
commit
c1207ceda5
35
lab2/JCD-backup
Normal file
35
lab2/JCD-backup
Normal file
@ -0,0 +1,35 @@
|
|||||||
|
pipeline {
|
||||||
|
agent none
|
||||||
|
stages {
|
||||||
|
stage('copy files') {
|
||||||
|
agent any
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
cp ./lab3/script.sh .
|
||||||
|
cp ./lab3/python_script.py .
|
||||||
|
cp ./lab3/Dockerfile .
|
||||||
|
cp ./lab3/requirements.txt .
|
||||||
|
'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('docker') {
|
||||||
|
agent {
|
||||||
|
dockerfile true
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('script') {
|
||||||
|
steps {
|
||||||
|
sh '''
|
||||||
|
chmod +x script.sh
|
||||||
|
./script.sh > stats.txt'''
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('archive artifact') {
|
||||||
|
steps {
|
||||||
|
archiveArtifacts 'stats.txt'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user