added tests stage to jenkinsfile and added a note to the readme about pkgconf
parent
a0ba8ba9f3
commit
47e5a093b4
|
|
@ -23,5 +23,10 @@ pipeline {
|
||||||
sh 'sequel -m db/migrations sqlite://db/${DB_NAME}'
|
sh 'sequel -m db/migrations sqlite://db/${DB_NAME}'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
stage('Run tests') {
|
||||||
|
steps {
|
||||||
|
sh 'cucumber'
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -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 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:
|
first you have to install the dependencies:
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue