archive model
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
Some checks failed
s444417-training/pipeline/head There was a failure building this commit
This commit is contained in:
parent
3bf9949b17
commit
204f5bcfec
@ -18,7 +18,7 @@ COPY . .
|
||||
|
||||
RUN chmod o+wrx ./startscript1.sh
|
||||
|
||||
RUN chmod o+wrx ./runPythonScripts.sh
|
||||
RUN chmod o+wrx ./startscript2.sh
|
||||
|
||||
RUN ./startscript1.sh
|
||||
|
||||
|
@ -1,12 +1,17 @@
|
||||
pipeline {
|
||||
agent { dockerfile true }
|
||||
stages {
|
||||
stage('Test') {
|
||||
stage('Copy') {
|
||||
steps {
|
||||
copyArtifacts projectName: 's444417-create-dataset'
|
||||
sh 'ls -la'
|
||||
}
|
||||
}
|
||||
stage('archive model') {
|
||||
steps {
|
||||
archiveArtifacts 'saved_model/my_model'
|
||||
}
|
||||
}
|
||||
}
|
||||
post {
|
||||
always {
|
||||
|
10
README.md
10
README.md
@ -1 +1,11 @@
|
||||
## Projekt na przedmiot inżynieria oprogramowania
|
||||
IUM_6
|
||||
---
|
||||
Zadanie 1
|
||||
1. stworzono job [s444417-training](https://tzietkiewicz.vm.wmi.amu.edu.pl:8080/job/s444417-training/)
|
||||
2. s444417-training uruchamia się automatycznie po zakończeniu joba s444417-create-dataset, plik "Jenkinsfile", przy pomocy build job. Kopiuje zbiór danych przy pomocy copyArtifact w pliku "Jenkinsfile3"
|
||||
3. "Jenkinsfile3" archiveArtifacts linia 12
|
||||
4. Powiadomienia, "Jenkinsfile3" linia 11
|
||||
5. Parametr podany jest w pliku "startscript1.sh" w linii 11, przy wołaniu skryptu uruchamiającego uczenie "startscript2.sh", parametr oznacza ilość epok
|
||||
|
||||
Zadanie 2
|
||||
|
@ -1,3 +0,0 @@
|
||||
#!/bin/bash
|
||||
python3 ./src/task1python.py
|
||||
python3 ./src/trainScript.py 6
|
@ -7,4 +7,5 @@ unzip house-price-dataset.zip
|
||||
|
||||
# head -n $CUTOFF ./Participants_Data_HPP/Train.csv > data.txt
|
||||
# head -n $CUTOFF ./Participants_Data_HPP/Test.csv > dataTest.txt
|
||||
./runPythonScripts.sh
|
||||
python3 ./src/task1python.py
|
||||
python3 ./src/trainScript.py 6
|
Loading…
Reference in New Issue
Block a user