Jenkinsfile test
This commit is contained in:
parent
cbdebbbd53
commit
28d6a255fa
@ -7,4 +7,3 @@ COPY ["requirements.txt", "./"]
|
||||
RUN pip3 install -r requirements.txt
|
||||
|
||||
COPY ["Zadanie 1.py", "."]
|
||||
CMD python3.8 "Zadanie 1.py"
|
28
Jenkinsfile
vendored
28
Jenkinsfile
vendored
@ -1,5 +1,7 @@
|
||||
pipeline {
|
||||
agent any
|
||||
agent {
|
||||
docker { image 'adnovac/ium_s434760:latest' }
|
||||
}
|
||||
parameters{
|
||||
string(
|
||||
defaultValue: 'annadnowak',
|
||||
@ -12,26 +14,13 @@ pipeline {
|
||||
description: 'Kaggle token taken from kaggle.json file, as described in https://github.com/Kaggle/kaggle-api#api-credentials',
|
||||
name: 'KAGGLE_KEY'
|
||||
)
|
||||
string(
|
||||
defaultValue: '10',
|
||||
description: 'CUTOFF',
|
||||
name: 'CUTOFF'
|
||||
)
|
||||
}
|
||||
stages {
|
||||
stage('checkout: Check out from version control') {
|
||||
steps {
|
||||
git 'https://git.wmi.amu.edu.pl/s434760/ium_434760.git'
|
||||
}
|
||||
}
|
||||
stage('sh: Shell Script')
|
||||
stage('docker: Download artifacts')
|
||||
{
|
||||
steps {
|
||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}"]) {
|
||||
sh "chmod 777 ./script.sh"
|
||||
sh './script.sh'
|
||||
|
||||
"KAGGLE_KEY=${params.KAGGLE_KEY}") {
|
||||
sh 'python3.8 \"Zadanie 1.py\"'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -41,6 +30,3 @@ pipeline {
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
//docker run -e KAGGLE_KEY -e KAGGLE_USERNAME -ti ium_434760:latest
|
Loading…
Reference in New Issue
Block a user