From 47e5a093b4cc6bb639ad2215d8fd5e33ec0d1d37 Mon Sep 17 00:00:00 2001 From: Adam Townsend Date: Fri, 6 Oct 2023 20:00:04 -0700 Subject: [PATCH] added tests stage to jenkinsfile and added a note to the readme about pkgconf --- Jenkinsfile | 5 +++++ README.md | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index cdedc5e..c944ffa 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,5 +23,10 @@ pipeline { sh 'sequel -m db/migrations sqlite://db/${DB_NAME}' } } + stage('Run tests') { + steps { + sh 'cucumber' + } + } } } diff --git a/README.md b/README.md index 7958b5a..8116855 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,8 @@ Roda, Falcon, Sequel, and SQLite the point of this project is to quickly build something and work on continuous deployment while making small refinements to the functional pieces. -the only outside piece of software that this project relies on is sqlite3. +the outside pieces of software that this project relies on are sqlite3 and pkgconf. + first you have to install the dependencies: