summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Jenkinsfile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 9984c20..1baea6f 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -2,6 +2,11 @@ pipeline {
agent any
stages {
+ stage('MakeDatabasefile') {
+ steps {
+ sh 'cat ./app/static/wordfreqapp.sql | sqlite3 ./app/static/wordfreqapp.db'
+ }
+ }
stage('BuildIt') {
steps {
echo 'Building..'