correct file extension
This commit is contained in:
parent
da42f40e7f
commit
dfc65c39e0
13
lab5/create/Jenkinsfile
vendored
13
lab5/create/Jenkinsfile
vendored
@ -17,19 +17,6 @@ pipeline {
|
|||||||
dockerfile true
|
dockerfile true
|
||||||
}
|
}
|
||||||
stages {
|
stages {
|
||||||
stage('script') {
|
|
||||||
steps {
|
|
||||||
withEnv(["KAGGLE_USERNAME=${params.KAGGLE_USERNAME}",
|
|
||||||
"KAGGLE_KEY=${params.KAGGLE_KEY}" ]) {
|
|
||||||
sh '''
|
|
||||||
ls -lah
|
|
||||||
chmod +x script.sh
|
|
||||||
./script.sh
|
|
||||||
ls -lah
|
|
||||||
'''
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
stage('archive artifact') {
|
stage('archive artifact') {
|
||||||
steps {
|
steps {
|
||||||
archiveArtifacts 'train.csv'
|
archiveArtifacts 'train.csv'
|
||||||
|
@ -30,7 +30,7 @@ train = pd.concat([X_train, Y_train], axis=1)
|
|||||||
test = pd.concat([X_test, Y_test], axis=1)
|
test = pd.concat([X_test, Y_test], axis=1)
|
||||||
valid = pd.concat([X_valid, Y_valid], axis=1)
|
valid = pd.concat([X_valid, Y_valid], axis=1)
|
||||||
|
|
||||||
train.to_csv('train.cs', index=False)
|
train.to_csv('train.csv', index=False)
|
||||||
test.to_csv('test.csv', index=False)
|
test.to_csv('test.csv', index=False)
|
||||||
valid.to_csv('valid.csv', index=False)
|
valid.to_csv('valid.csv', index=False)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user