changed jenkinsfile

This commit is contained in:
piotr6789 2021-06-11 19:25:35 +02:00
parent 56fde0a95b
commit 02636aac96
2 changed files with 11 additions and 37 deletions

View File

@ -4,4 +4,4 @@ stages:
stats: stats:
cmd: python ./stats.py cmd: python ./stats.py
split: split:
cmd: ./bash.sh cmd: ./bash2.sh

46
dvc/Jenkinsfile vendored
View File

@ -10,44 +10,18 @@ pipeline {
) )
} }
stages { stages {
stage('One') { stage('checkout') {
properties([ steps {
parameters([ git 'https://git.wmi.amu.edu.pl/s440058/ium_440058.git'
string(defaultValue: '', copyArtifacts fingerprintArtifacts: true, projectName: 's440058-create-dataset', selector: buildParameter('BUILD_SELECTOR')
description: 'Kaggle username',
name: 'KAGGLE_USERNAME',
trim: false),
password(defaultValue: '',
description: 'Kaggle token',
name: 'KAGGLE_KEY'),
string(defaultValue: '1000',
description: 'Data cutoff',
name: 'CUTOFF',
trim: false)
])
]
)
stage('Two') {
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
"KAGGLE_KEY=${params.KAGGLE_KEY}", "CUTOFF=${params.CUTOFF}" ]) {
checkout([$class: 'GitSCM', branches: [[name: '*/master']], doGenerateSubmoduleConfigurations: false, extensions: [], submoduleCfg: [], userRemoteConfigs: [[url: 'https://git.wmi.amu.edu.pl/s440058/ium_440058']]])
checkout scm
def image = docker.build("s440058/ium")
image.inside {
sh 'python3 ./pytorch-example.py > model.txt'
sh "chmod 777 ./bash.sh"
sh "./bash.sh"
archiveArtifacts "courses.data.dev"
archiveArtifacts "courses.data.test"
archiveArtifacts "courses.data.train"
archiveArtifacts 'model.txt'
}
} }
} }
stage('sh: Shell Script') {
steps {
sh 'chmod +x ./bash2.sh'
sh './bash2.sh'
}
}
stage('DVC') { stage('DVC') {
steps { steps {
withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) { withCredentials([sshUserPrivateKey(credentialsId: '48ac7004-216e-4260-abba-1fe5db753e18', keyFileVariable: 'IUM_SFTP_KEY')]) {